/*check for the validation of form*/

function validate()
{

//check for user id
if (document.login_form.login_username.value=="")
{
alert("Please Enter User ID");
document.login_form.login_username.focus();
return false;
}
//check for password
if (document.login_form.secretkey.value=="")
{
alert("Please Enter Password");
document.login_form.secretkey.focus();
return false;
}
/*else
	{
	uid=document.login_form.login_username.value;
uid=uid+"@hindpaper.com";
alert(uid);
	}*/
}


