function Validate()
{
	if((window.document.frm.txUsername.value=='login') && (window.document.frm.pwPassword.value=='987456'))
	{
		return true;
	}
	else
	{
		alert("Invalid Username or password");		
		window.document.frm.txUsername.focus();
		window.document.frm.txUsername.select();
		return false;
	}	
}	