 
    function FormValidation() {
		 var oForm = window.document.forms[0];
		 var oElement = window.document.getElementById("txtEmailId");
		 var oElement1 = window.document.getElementById("txtMyName");
		 if(oElement1.value == "") {
		  alert("Oops! You forgetten to fill your name.");
		  return false;
		 }
		 if(oElement.value == "") {
		  alert("Oops You Forgetten to Fill Email Id.");
		  return false;
		 }
		 else {
		  return (ValidateForm(oForm)); 
		 }
		}
		function ValidateLimit(poInputElement,poOutputElement,iMaxLength) {
		  CharacterCount(poInputElement,poOutputElement,iMaxLength); 
		}
		
   function kH(e) {
       var tmp = e ? e.target : window.event.srcElement
    if( tmp.type == "textarea" ){return true;}
      var pK = e ? e.which : window.event.keyCode;
      return pK != 13;
    }
    document.onkeypress = kH;
    if (document.layers) document.captureEvents(Event.KEYPRESS);
  
  