<!--
	function MM_reloadPage(init)
	{  //reloads the window if Nav4 resized
		if (init==true) with (navigator)
		{	
			if ((appName=="Netscape")&&(parseInt(appVersion)==4))
			{
				document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage;
			}
		}
		else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH)
		{
			location.reload();
		}
	}
	MM_reloadPage(true);
	function wopenforgot()
	{
		window.open("/site/forgotpass.cfm",null,"height=250,width=350,top=150,left=250");
	}
	function chk()
	{
		if (document.lfllog.uname.value.length == 0)
		{
			alert("Username cannot be empty");
			document.lfllog.uname.focus();
			return false;
		}
		if((document.lfllog.uname.value.indexOf("@",1)==-1) || (document.lfllog.uname.value.indexOf(".",1) == -1))
		{
			alert("UserName/Email is Incorrect");
			document.lfllog.uname.focus();
			return false;
		}
		if (document.lfllog.passw.value.length == 0)
		{
			alert("Password cannot be empty");
			document.lfllog.passw.focus();
			return false;
		}
		return true;
	}
	function GuestChk(act)
	{
		var gname = document.lflguestlog.passw.value;
		gname = gname.toUpperCase();
		if (gname.length == 0)
		{
			if (act == "Guest")
			{
				alert("Guest Password Required!");
			}
			else
			{
				alert("Scratch Card# Required!");
			}
			document.lflguestlog.passw.focus();
			return false;
		}
		//else if (gname !== "HEALTH")
		//{
			//alert ("Guest Password Incorrect. Please Try Again.");
			//document.lflguestlog.passw.value = "";
			//document.lflguestlog.passw.focus();
			//return false;
		//}
		return true;
	}
//-->