function check_contact1()
{
		if (document.contact_form.nume.value=="" || document.contact_form.nume.value=="-") {
			alert("Va rugam sa completati campul <Nume>.");
			document.contact_form.nume.focus();
			return false;
		}

		if (document.contact_form.prenume.value=="" || document.contact_form.prenume.value=="-") {
			alert("Va rugam sa completati campul <Prenume>.");
			document.contact_form.prenume.focus();
			return false;
		}
		
		if (document.contact_form.email.value=="" || document.contact_form.email.value=="-") {
			alert("Va rugam sa completati campul <E-mail>.");
			document.contact_form.email.focus();
			return false;
		}
		
		if (document.contact_form.mesaj.value=="" || document.contact_form.mesaj.value=="-") {
			alert("Va rugam sa completati campul <Mesaj>.");
			document.contact_form.mesaj.focus();
			return false;
		}

		if (document.contact_form.code.value=="") {
			alert("Va rugam sa rescrieti codul din imagine.");
			document.contact_form.code.focus();
			return false;
		}

		return true;
}


function check_contact2()
{
		if (document.contact_form.nume.value=="" || document.contact_form.nume.value=="-") {
			alert("Please fill in the field <Surname>.");
			document.contact_form.nume.focus();
			return false;
		}

		if (document.contact_form.prenume.value=="" || document.contact_form.prenume.value=="-") {
			alert("Please fill in the field <Name>.");
			document.contact_form.prenume.focus();
			return false;
		}
		
		if (document.contact_form.email.value=="" || document.contact_form.email.value=="-") {
			alert("Please fill in the field <E-mail>.");
			document.contact_form.email.focus();
			return false;
		}
		
		if (document.contact_form.mesaj.value=="" || document.contact_form.mesaj.value=="-") {
			alert("Please fill in the field <Message>.");
			document.contact_form.mesaj.focus();
			return false;
		}

		if (document.contact_form.code.value=="") {
			alert("Please fill in the code from the image.");
			document.contact_form.code.focus();
			return false;
		}

		return true;
}


function check_contact3()
{
		if (document.contact_form.nume.value=="" || document.contact_form.nume.value=="-") {
			alert("Please fill in the field <Surname>.");
			document.contact_form.nume.focus();
			return false;
		}

		if (document.contact_form.prenume.value=="" || document.contact_form.prenume.value=="-") {
			alert("Please fill in the field <Name>.");
			document.contact_form.prenume.focus();
			return false;
		}
		
		if (document.contact_form.email.value=="" || document.contact_form.email.value=="-") {
			alert("Please fill in the field <E-mail>.");
			document.contact_form.email.focus();
			return false;
		}
		
		if (document.contact_form.mesaj.value=="" || document.contact_form.mesaj.value=="-") {
			alert("Please fill in the field <Message>.");
			document.contact_form.mesaj.focus();
			return false;
		}

		if (document.contact_form.code.value=="") {
			alert("Please fill in the code from the image.");
			document.contact_form.code.focus();
			return false;
		}

		return true;
}

