	function MM_openBrWindow(theURL,winName,features) { //v2.0
  		window.open(theURL,winName,features);
	}
	
	function Validate() {
		if(email(document.casinodownload.Email.value)) {
			if(document.casinodownload.FirstName.value.length<1){
				alert('Please enter your first name.');
				document.casinodownload.FirstName.focus();
			} else{
				document.casinodownload.submit();
			}
		}
	}
		
	function email(email) {
		invalidChars = " /:,;";
		if (email == "") {
			alert("Please enter your e-mail address.")
			return false;
		}
		for (i=0; i<invalidChars.length; i++) {
			badChar = invalidChars.charAt(i)
			if (email.indexOf(badChar,0) != -1) {
				alert("Please make sure your e-mail is correct. Check for illegal characters.")
				return false;
			}
		}
		atPos = email.indexOf("@",1)
		if (atPos == -1) {
			alert("Your e-mail must have an '@' sign for it to be valid")
			return false;
		}
		if (email.indexOf("@",atPos+1) != -1) {
			return false;
		}
		periodPos = email.indexOf(".")
		if (periodPos == -1) {
			alert("Please check your e-mail address and make sure it is correct.")
			return false;
		}
		if (periodPos+3 > email.length)	{
			alert("Please check your e-mail address and make sure it is correct.")
			return false;
		}
		return true;
	}
	
	var MemberEmail=(document.all)?'<INPUT TYPE=TEXT SIZE="27" MAXLENGTH="64" NAME="Email" VALUE="">':'<INPUT TYPE=TEXT SIZE="17" MAXLENGTH="64" NAME="Email" VALUE="">';
	var MemberFirstName=(document.all)?'<INPUT TYPE=TEXT SIZE="27" MAXLENGTH="64" NAME="FirstName" VALUE="">':'<INPUT TYPE=TEXT SIZE="17" MAXLENGTH="64" NAME="FirstName" VALUE="">';
