// JavaScript Document
function validarecomandaramburs(form) 
{
if ( (form.nume.value =="") || (form.prenume.value =="") ) 
	{
	alert("Te rugam sa introduci Numele si Prenumele tau.");
	return false;
	}
else
	if (form.telefon.value =="")
		{
		alert("Te rugam sa introduci numarul tau de telefon.");
		return false;
		}
	else
		if (form.email.value == "" || form.email.value.indexOf('@', 0) == -1)
			{
			alert("Te rugam sa introduci corect adresa de e-mail!   Ex: nume@yahoo.com");
			return false;
			}
		else
			if (form.strada.value =="")
				{
				alert("Te rugam sa introduci numele strazii.");
				return false;
				}
			else
				if (form.numar.value =="")
					{
					alert("Te rugam sa introduci numarul locuintei.");
					return false;
					}
				else
					if (form.codpostal.value =="")
						{
						alert("Te rugam sa introduci Codul Postal.");
						return false;
						}
					else
							if (form.localitate.value =="")
								{
								alert("Te rugam sa introduci Localitatea.");
								return false;
								}
								else
									if (form.medaliat.value =="")
										{
											alert("Te rugam sa introduci cod-ul unic dupa activarea de pe site-ul www.medaliat.ro.");
											return false;
										}
								else
									{
									return true;
									}
}


