 
    function FormValidation() {
		 var oForm = window.document.forms[0];
		 var oElement = window.document.getElementById("txtEmailId");
		 var oElement1 = window.document.getElementById("txtMobile");
		 var oElement2 = window.document.getElementById("txtLandLine");
		 if(oElement1.value == "" && oElement2.value == "") {
	    if(oElement.value == "") {
	       alert("Oops You Forgetten to Fill Email Id.");
	       return false;
	     }
	    alert("Please Provide Either Landline number or Mobile Number.");
	    return false;
		 }
		 else {
		  return (ValidateForm(oForm)); 
		 }
		}
		function ValidateLimit(poInputElement,poOutputElement,iMaxLength) {
		  CharacterCount(poInputElement,poOutputElement,iMaxLength); 
		}
		function clickButton(e, buttonid) { 
	  var bt = window.document.getElementById(buttonid); 
      if (bt){ 
        if(navigator.appName.indexOf("Netscape")>(-1)){ 
          if (e.keyCode == 13){ 
            bt.click(); 
            return false; 
          } 
          } 
        if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1)){ 
          if (event.keyCode == 13){ 
            bt.click(); 
            return false; 
          } 
        } 
      } 
    } 
		function kH(e) {
      var pK = e ? e.which : window.event.keyCode;
      return pK != 13;
    }
    document.onkeypress = kH;
    if (document.layers) document.captureEvents(Event.KEYPRESS);
  
