// JavaScript Document
function ch()
{
	if (document.frmclient.uname.value=="")
	{
		alert("Enter user name or ID");
		return false;
	}
	if (document.frmclient.pwd.value=="")
	{
		alert("Enter password");
		return false;
	}
}
