//created By Prijesh Soni

function validate()
{
if (document.Form1.txtuname.value == "" )
{
	alert("Please enter the User Name !");
	document.Form1.txtuname.focus();
	return false;
}

if (document.Form1.txtpassword.value == "" )
{
	alert("Please enter the Password !");
	document.Form1.txtpassword.focus();
	return false;
}
return true;

}