// JavaScript Document

function validare_contact(frm) {
	if(frm.name.value == "") {
		alert("Please fill in your NAME");
		return false;
	}
	else if(frm.email.value == "") {
		alert("Please fill in your EMAIL");
		return false;
	}
	else if(frm.mesaj.value == "") {
		alert("Please fill in your MESSAGE");
		return false;
	}
	else if(frm.validator.value == "") {
		alert("Please fill in the SECURITY CODE.");
		return false;
	}
	else {
		return true;
	}
}