<!--hide script
function checkfields(thisform) {
	if ( thisform.frmUserid.value == null || thisform.frmUserid.value == "" ) {
		alert("ID de Usuario es requerido.");
		thisform.frmUserid.focus();
		thisform.frmUserid.select();
		return false;
	}
	else
	{
		if ( thisform.frmPassword.value == null || thisform.frmPassword.value == "" ) {
			alert("Password es requerido.");
			thisform.frmPassword.focus();
			thisform.frmPassword.select();
			return false;
		}
	}
}
// end hide -->
