﻿// JScript File
// Summary description for Forgot.js
// FileName                 : Forgot.js
// Descriptio               : Validating Login Id
// Developer                : Aruna
// Created Date             : 25-Oct-2007 

function ForgotValidation()
{
    var IsValid = 0;
    var Msg = "Required Information is Missing: \n";
    
    if(document.getElementById("ctl00_cphUser_txtLoginid").value == "")
    {
        Msg = Msg + "Login Id \n";
        IsValid = 1;
    }
    
   if(IsValid == 1)
   {
      alert(Msg);
      document.getElementById("ctl00_cphUser_txtLoginid").focus();
      return false;
   }
}


