//******************************************
// these javascript validates the user input
//******************************************
function VerifyData()
{
if (allEmpty(RG3, document.frmUser.txtUserName)) {return false;}
if (checkLength(RG12, document.frmUser.txtUserName, 5)) {return false;}
if (allEmpty(RG4, document.frmUser.txtPassword)) {return false;}
if (checkLength(RG13, document.frmUser.txtPassword, 8)) {return false;}

}