	function showFocus(obj)
	{
		if(!document.getElementById)
			return; // else do the thing
		obj.style.border = "1px solid #ffcc00";
	}
	function showBlur(obj)
	{
		if(!document.getElementById)
			return; // else do the thing
		obj.style.border = "1px solid #666666";
	}
	function checksignup() {
		if ( document.mailform.mail_name.value == '' ) {
			window.alert('Request Your Name!');
			document.mailform.mail_name.focus();
			return false;
		}
		if ( document.mailform.mail_tel.value == '' ) {
			window.alert('Request Your TEL');
			document.mailform.mail_tel.focus();
			return false;
		}
		if ( document.mailform.mail_email.value == '' ) {
			window.alert('Request Your EMAIL');
			document.mailform.mail_email.focus();
			return false;
		}
           if ( document.mailform.mail_email.value.length> 0 &&!document.mailform.mail_email.value.indexOf("@")==-1|document.mailform.mail_email.value.indexOf(".")==-1 ) {
			window.alert('EMAIL ERROR');
			document.mailform.mail_email.focus();
			return false;
		}
		if ( document.mailform.mail_message.value == '' ) {
			window.alert('Request Message');
			document.mailform.mail_message.focus();
			return false;
		}
		if ( document.mailform.mail_message.value.length<10) {
			window.alert('Request Message');
			document.mailform.mail_message.focus();
			return false;
		}
		return true;
	}
	//-->
