function headerLoginData()
{
username1 = document.headerLoginForm.username.value;
if(username1 == "")
{
alert("Please enter the username.");
document.headerLoginForm.username.focus()
document.headerLoginForm.username.style.background = "#D4CABC"
return false;
}
else
{
document.headerLoginForm.username.style.background = "#FFFFFF"
}
pwd1 = document.headerLoginForm.pwd.value;
if(pwd1 == "")
{
alert("Please enter the password.");
document.headerLoginForm.pwd.focus()
document.headerLoginForm.pwd.style.background = "#D4CABC"
return false;
}
else
{
document.headerLoginForm.pwd.style.background = "#FFFFFF"
}
}
