function validate()
{     if (trimwts(document.getElementById('name').value)=="") 
		{ alert("Complectati nume!");
		  document.getElementById('name').focus();
		  return false;
		 }
	if (checkmail(document.getElementById('email').value)==false)
		 { alert("Complectati un email valid");
		    document.getElementById('email').focus();
		    return false;
		 }
	if ((trimwts(document.getElementById('phone').value)=="")||(isNum(document.getElementById('phone').value)==false))
		  {
		  	alert("Complectati telefonul, trebuie sa contina un numar!");
			document.getElementById('phone').focus();
			return false;
		  }
     if (trimwts(document.getElementById('subject').value)=="") 
		{ alert("Complectati subiectul!");
		  document.getElementById('subject').focus();
		  return false;
		 }
	 if (trimwts(document.getElementById('description').value)=="") 
		{ alert("Complectati mesaj!");
		  document.getElementById('description').focus();
		  return false;
		 }
		 
	  if (trimwts(document.getElementById('validate_code').value)=="") 
		{ alert("Complectati codul din imagine!");
		  document.getElementById('validate_code').focus();
		  return false;
		}
	document.getElementById('contact_company').submit();	
	}
