function saveUrl()
{
	var url='';
	var now_url=window.location.href;
	if(now_url.indexOf('system')!=-1 || now_url.indexOf('special')!=-1)
	{
		url='../../ajax/ajax_save_url.jsp';
	}
	else
	{
		url='../ajax/ajax_save_url.jsp';
	}
	now_url=now_url.replace(/(&)/g,'★');
	if(now_url.indexOf('login/login.jsp')==-1 
	&& now_url.indexOf('register/register.jsp')==-1 
	&& now_url.indexOf('login/c_login.jsp')==-1 
	&& now_url.indexOf('register/c_register.jsp')==-1 
	&& now_url.indexOf('login/login_ok.jsp')==-1
	&& now_url.indexOf('register/ceo_register.jsp')==-1  
	&& now_url.indexOf('register/register_ok.jsp')==-1 
	&& now_url.indexOf('error/index.jsp')==-1 
	&& now_url.indexOf('/ok.jsp')==-1
	&& now_url.indexOf('/register/return_password.jsp')==-1
	&& now_url.indexOf('/register/reset_password.jsp')==-1
	&& now_url.indexOf('/register/c_return_password.jsp')==-1
	&& now_url.indexOf('/register/c_reset_password.jsp')==-1)
	{
    var M_xmlhttp;
	if (window.XMLHttpRequest){M_xmlhttp=new XMLHttpRequest();}else if (window.ActiveXObject){
	M_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}if(M_xmlhttp) {M_xmlhttp.onreadystatechange = function() {
	if (M_xmlhttp.readyState==4){try {if(M_xmlhttp.status==200) 
	{    
	    var log=M_xmlhttp.responseText;
	    if(log!=0)
	    {
	    	//alert(log);
	    }
	    else
	    {
	    	//alert(log);
	    }
	}
	else {
	alert( M_xmlhttp.status + '=' + M_xmlhttp.statusText);}} catch(exception) {alert(exception);}}};
	M_xmlhttp.open("POST", url, true);
	M_xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	M_xmlhttp.send("now_url="+now_url);
	}
	}
}
