var inValid = "azertyuiopqsdfghjklmwxcvbn0123456789";

function Form_Validator(theForm)
{
	var alertstr = " ";
	if (theForm.Nume.value == "")
	{
		alert(alertstr + "Completati numele dvs.");
		theForm.Nume.focus();
		return (false);
	}
	if (theForm.Nume.value.length < 3)
	{
		alert(alertstr + "Completati corect numele dvs.");
		theForm.Nume.focus();
		return (false);
	}
	if (theForm.Email.value == "")
	{
		alert(alertstr + "Va rugam sa specificati o adresa de email valida.");
		theForm.Email.focus();
		return (false);
	}
	if (theForm.Mesaj.value == "")
	{
		alert(alertstr + "Completati mesajul dvs.");
		theForm.Mesaj.focus();
		return (false);
	}
}