// check submit
		function check_submit()		{				
			if (document.frmMYC.email.value == "")
			{
				alert ("Ooops! Did you forget something? Please enter your Email")
				document.frmMYC.email.focus()
				return false
			}
			else {	verifyEmail = document.frmMYC.email.value

				if ((verifyEmail.indexOf('@') < 0) || ((verifyEmail.charAt(verifyEmail.length-4) != '.') && (verifyEmail.charAt(verifyEmail.length-3) != '.')))
					{alert("You have entered an invalid email address. Please try again.");
					document.frmMYC.email.focus();
					return false;
					} 
			}
		return true
		}
		//-->
window.defaultStatus="Copyright &#169; machsite.net 2007";
//-->
	 function putFocus(frmMYC, elementInst) {
		  if (document.forms.length > 0) {
		   document.forms[frmMYC].elements[elementInst].focus();
			  }
	 }
