
function Getstats()
{
window.status=('Attempting to log in to User Area...')

var iName;
var AccId;
AccId=document.Login.AccId.value
iName=document.Login.iName.value

if (iName== ""||AccId== "")
{
alert('\nERROR.\nYou Must enter your User Name and Password to Login.')
window.status=('Missing Data. Please cheak spelling and Ensure that names are in correct case.')
}
if (iName=="appcon"&& AccId=="appcon4" || iName=="riverside"&& AccId=="rmc011609" || iName=="ecko"&& AccId=="30402" || iName=="scope"&& AccId=="093005" || iName=="anvil"&& AccId=="101503"|| iName=="f&t"&& AccId=="101703")
{
var location=("120.html");
this.location.href=location;
window.status=('Verifiying User Name and Password');
}
else if (iName=="mld04"&& AccId=="appcon4" || iName=="phn04"&& AccId=="appcon4" || iName=="tjs04"&& AccId=="appcon4" ||iName=="hasrtpa"&& AccId=="phh" || iName=="glrweb"&& AccId=="appcon4" || iName=="helpdesk"&& AccId=="appcon4")
{
var location=("121.html");
this.location.href=location;
window.status=('Verifiying User Name and Password');
}
else
{
var location=("loginfail.html");
this.location.href=location;
window.status=('Verifying User Name and Password.........Accsess Denied.');
}
}

