function validare_date(){
var telRegEx = /[A-Z_%&$]/i;
var emailRegEx = /[A-Z0-9_.&]+@[A-Z0-9]+.[A-Z]/i;

     if (document.forms["mod_date"].nume.value == "") {
          alert("Nu ati completat numele.");
          return false;
     }else if(document.forms["mod_date"].prenume.value == ""){
	 	  alert("Nu ati completat prenumele.");
          return false;
	 }else if(document.forms["mod_date"].judet.value == ""){
	 	  alert("Nu ati completat judetul.");
          return false;
	 }else if(document.forms["mod_date"].oras.value == ""){
	 	  alert("Nu ati completat orasul.");
          return false;		  
	 }else if(document.forms["mod_date"].adresa.value == ""){
	 	  alert("Nu ati completat adresa.");
          return false;
	 }else if(document.forms["mod_date"].cod_postal.value == ""){
	 	  alert("Nu ati completat codul postal.");
          return false;
	 }else if(document.forms["mod_date"].email.value == ""){
	 	  alert("Adresa de email este un camp obligatoriu.");
          return false;
	 }else if (document.forms["mod_date"].email.value.search(emailRegEx) == -1){
	 	  alert("Adresa de email nu este valida.");
          return false;
	 }else if(document.forms["mod_date"].telefon.value == ""){
	 	  alert("Nu ati completat numarul de telefon.");
          return false;
	 }else{
	 document.forms["mod_date"].submit();
	 }

}

