function fillAllField()
{
	if (document.frm.UserName.value=="") 
	{
		alert("Please enter the User Name!")
		document.frm.UserName.focus();
		return false;
	}
	else if (document.frm.Password.value=="") 
	{
		alert("Please enter the Password!")
		document.frm.Password.focus();
		return false;
	}
	return true;
}
