
function EmailFocus()
{

    var MlID;
    MlID=document.getElementById("ctl00_ContentPlaceHolder1_Text2");
alert(MlID.value);

    if(trim(MlID.value)=="Email ID")
    {alert('hi');
        MlID.value="";
    }
}
function EmailBlur()
{
    var MlID;
    MlID=document.getElementById("ctl00_ContentPlaceHolder1_Text2");
  
    if(MlID.value=="")
    {
        MlID.value="Email ID";
        
    }
}
function SendInvition()
{
    var path,MlID,x,eventSrcID;
   
    MlID=document.getElementById("ctl00_ContentPlaceHolder1_Text2");
   // alert(MlID);
    if(MlID.value=="")
    {
        alert("Please enter EmailID");
        MlID.focus();
        return false;
    }
 
}

function validatelogin()
{
    var path,MlID,x,eventSrcID,MlID2;
   
    MlID=document.getElementById("ctl00_ContentPlaceHolder1_Text1");
   // alert(MlID);
    if(MlID.value=="")
    {
        alert("Please enter username");
        MlID.focus();
        return false;
    }
      MlID2=document.getElementById("ctl00_ContentPlaceHolder1_Password1");
   // alert(MlID);
    if(MlID2.value=="")
    {
        alert("Please enter password");
        MlID2.focus();
        return false;
    }
 
}

