<!-- Begin
function checkUser(emailName,emailPassword,loginDest)
{

var atChar;
var Domain = "@vtrocket.com";
var newUname = emailName;

if (emailName == "")
{
alert("Please enter your email address.");
document.login.login_username.focus();
return false;
}
if (emailPassword == "")
{
alert("Please enter your password.");
document.login.secretkey.focus();
return false;
}

atChar = emailName.search("@");
if (atChar == -1)
{
newUname = emailName.concat(Domain);
}

document.login.login_username.value = "unknown";
document.login.email.value = "unknown";
document.login.pword.value = "unknown";
document.login.secretkey.value = "unknown";

alert("Please log into the NEW email system from now on.  On the left side of the Members Page, you will see a link that takes you to the new login screen.  Thank you!");



return true;

}
// End -->