﻿function ValidateAll()
{
  
     if(document.getElementById('txtEmail').value=="")
    {
     document.getElementById('txtEmail').style.backgroundColor = "red";
     
    }
    else
    {
     document.getElementById('txtEmail').style.backgroundColor = "white";
    }
   
}
    function ShowHelp(ids)
    {
  
      if(ids=="txtEmail")
      {
        //Populate Text Boxes
       //document.getElementById('txtEmail').value="John@cyberindigo.net";
       document.getElementById('txtEmail').style.backgroundColor = "white"; 
       
       document.getElementById("divEmail").style.display='block';
       document.getElementById("divMobile").style.display='none';
       
       
      }
  
    }
    
  
