function validate()
{ if (document.getElementById('name').value=="") 
	{   alert("Complectati numele!");
		document.getElementById('name').focus();
		return;
	}
 if (document.getElementById('title').value=="")
   { alert("Complectati subiect mesaj!");
     document.getElementById('title').focus();
 	 return;
    }
 if (document.getElementById('description').value=="")
   {alert("Complecati continut mesaj!");
    document.getElementById('description').focus();
	return;
	   
	   }
 if (checkmail(document.getElementById('email').value)==false)
		 {  alert("Complectati un email valid");
		    document.getElementById('email').focus();
		    return false;
		 }   
document.getElementById('contact'	).submit();

}