	<!--
	////////////////////////////////////////////////////////////////
	function email_password(){
		if(document.signinform.formEmail.value == ""){
			// Did the user type in anything?
			alert("You must first type in your email address.");
		}else if(!isValidEmail(document.signinform.formEmail.value)){
			// Is what the user typed in a valid email address?
			alert("You must type in a valid email address.");
		}else{
			// OK, it must be a valid email address so now go to the asp document for the next step
			location = "default.asp?emailPassword=" + document.signinform.formEmail.value
		}
	}
	////////////////////////////////////////////////////////////////
	function isValidEmail(email){
		invalidChars = " /;:,";
	
		for(i=0; i < invalidChars.length; i++){
			badChar = invalidChars.charAt(i)
			if(email.indexOf(badChar,0) > -1){
				return false
			}
		}
		atPos = email.indexOf("@",1)
		if(atPos == -1){
			return false
		}
		if(email.indexOf("@",atPos+1) > -1){
			return false
		}
		periodPos = email.indexOf(".",1)
		if(periodPos == -1){
			return false
		}
		if(periodPos+3 > email.length){
			return false
		}
		return true
	}
	////////////////////////////////////////////////////////////////
	//-->
