function Validate (myForm) {
	if (!ValidateLength(myForm.nume.value)) {
		alert('Nu ati introdus numele !');
		myForm.nume.focus();
		return false;
	}
	if (!ValidateLength(myForm.adresa.value)) {
		alert('Nu ati introdus adresa !');
		myForm.adresa.focus();
		return false;
	}
	if (!ValidateLength(myForm.telefon.value)) {
		alert('Nu ati introdus numarul de telefon !');
		myForm.telefon.focus();
		return false;
	}
	if (!ValidateLength(myForm.email.value)) {
		alert('Nu ati introdus adresa de email !');
		myForm.email.focus();
		return false;
	}
}
function ValidateLength(name) {
	if (name.length == 0) {
		return false;
	}
	return true;
}
