//==================================================
//
// Logon.js
//' Copyright © 2001, Christopher Lee, All Rights Reserved
//==================================================

function VS()
{
var tmp
//Email
tmp=document.forms[1]["Email"].value;
if (tmp.indexOf("@")<1)
{
	document.forms[1]["Email"].focus();
	alert("Your Email address seems wrong. Please check it for accuracy.");
	return;
}

//Password
tmp=document.forms[1]["Password"].value;
if (tmp.length < 1)
{
	document.forms[1]["Password"].focus();
	alert("Your Password is required.");
	return;
}

document.forms[1].submit();
return true;
}


