function validateForm() {


	if (sendContactForm.name.value =='') {

		alert("You haven't entered any text into the name field.");

		event.returnValue=false;

		return;

	}

	if (sendContactForm.company.value =='') {

		alert("You haven't entered any text into the company field.");

		event.returnValue=false;

		return;

	}


	if (sendContactForm.phone.value =='') {

		alert("You haven't entered any text into the telephone field.");

		event.returnValue=false;

		return;

	}

	if (sendContactForm.emailFrom.value =='') {

		alert("You haven't entered your email address.");

		event.returnValue=false;

		return;

	}


	if (sendContactForm.country.value =='') {

		alert("You haven't entered any text into the country field.");

		event.returnValue=false;

		return;

	}

	if (sendContactForm.message.value =='') {

		alert("You haven't entered any text into the message field.");

		event.returnValue=false;

		return;

	}

		
var agree=confirm('Send message to pharma machines?');
if (agree){
	document.sendContactForm.sent.value = 'ok'
	return true;
}else
	return false;

}