<!--
     function login()
	{
	alert('Login Please');
	}
	
	function ad_check()
	{
	 var form=document.adform;
	 	if(!form.id.value)
		{
			alert('Input the Id...');
			form.id.focus();
			return;
		}
		if(!form.pass.value)
		{
			alert('Input the pass...');
			form.pass.focus();
			return;
		}	 	
		form.submit();
	}
	
	
	
	function recheck()
	{
	 var form=document.reform;
	 	if(!form.email.value)
		{
			alert('Input the eamil...');
			form.email.focus();
			return;
		}
	 	 /*
	 	if(form.email.value.indexOf("@") < 0)
		{
			alert('We go crisscross with an e-mail format.');
			form.email.focus();
			return;
		}
		
		if(form.email.value.indexOf(".") < 0)
		{
			alert('We go crisscross with an e-mail format.');
			form.email.focus();
			return;
		}
		*/
		form.submit();
	}
	/*
	function login_check()
	{
		var form=document.loginform;
			if(!form.username.value)
			{
				alert('Not insert username');
				form.usrname.focus();
				return
			}
			if(!form.pass.value)
			{
				alert('Not insert pass');
				form.pass.focus();
				return
			}
			form.submit();
	}*/
	/*
	function change_check()
	{
		var form=document.chform;
			if(!form.passwd.value)
			{
				alert('Input the password');
				form.passwd.focus();
				return
			}
			if(!form.username.value)
			{
				alert('Input the username');
				form.username.focus();
				return
			}
			if(!form.pass.value)
			{
				alert('Input the password');
				form.pass.focus();
				return
			}
			if(!form.email.value)
			{
				alert('Input the email');
				form.email.focus();
				return
			}
				 
	 	if(form.email.value.indexOf("@") < 0)
		{
			alert('We go crisscross with an e-mail format.');
			form.email.focus();
			return;
		}
		
		if(form.email.value.indexOf(".") < 0)
		{
			alert('We go crisscross with an e-mail format.');
			form.email.focus();
			return;
		}
			
			form.submit();
	}
	*/
	
	
	
	/*
	function register()
	{
	var form=document.regform;
		if(!form.code.value)
		{
			alert('Input the code.');
			form.code.focus();
			return false;
		}
		if(!form.username.value)
		{
			alert('Input the name');
			form.username.focus();
			return false;
		}
		if(!form.pass.value)
		{
			alert('Input the Password');
			form.pass.focus();
			return;
		}
		if(!form.email.value)
		{
			alert('Input the Email');
			form.email.focus();
			return;
		}
			 
	 	if(form.email.value.indexOf("@") < 0)
		{
			alert('Input the');
			form.email.focus();
			return;
		}
		
		if(form.email.value.indexOf(".") < 0)
		{
			alert('We go crisscross with an e-mail format.');
			form.email.focus();
			return;
		}
		if(form.pass.value !== form.pass1.value)
		{
			alert('The secret number is not same');
			form.pass.focus();
			return;
		}
		
		if(!form.bname.value)
		{
			alert('Input the Business Name');
			form.bname.focus();
			return;
		}
		if(!form.adder.value)
		{
			alert('Input the Adress');
			form.adder.focus();
			return;
		}
		if(!form.city.value)
		{
			alert('Input the City');
			form.city.focus();
			return;
		}if(!form.state.value)
		{
			alert('Input the State/Region');
			form.state.focus();
			return;
		}if(!form.zipcode.value)
		{
			alert('Input the Postal/Zip code');
			form.zipcode.focus();
			return;
		}
		form.submit();
	}
	*/
	
	/*
	function bu_check()
	{
		var form=document.buform;
		
		if(!form.bname.value)
		{
			alert('Input the Business Name');
			form.bname.focus();
			return;
		}
		if(!form.adder.value)
		{
			alert('Input the Adress');
			form.adder.focus();
			return;
		}
		if(!form.city.value)
		{
			alert('Input the City');
			form.city.focus();
			return;
		}if(!form.state.value)
		{
			alert('Input the State/Region');
			form.state.focus();
			return;
		}if(!form.zipcode.value)
		{
			alert('Input the Postal/Zip code');
			form.zipcode.focus();
			return;
		}
		form.submit();
	}
	*/
	function forget_check()
	{
		var form=document.forform;
		
		if(!form.username.value)
		{
			alert('Please input the username');
			form.username.focus();
			return;
		}
		if(!form.email.value)
		{
			alert('Please input the email');
			form.email.focus();
			return;
		}
		form.submit();
	}
	
	function register_check()
	{
		var form=document.upform;
						
		form.submit();
	}
	
	
	function nextFocus(where)
	{
		if(event.keyCode==13)
		where.focus();
	}
		
	
//->>