// JavaScript Document
function checkContact() {
		contactname = document.getElementById('contactname').value;
		contactemail = document.getElementById('contactemail').value;
		contactcompany = document.getElementById('contactcompany').value;


		if((contactname != '') && (contactcompany != '') && (contactemail != '')) {document.contactform.submit();}

		else {alert('You did not fill out all required fields. Please provide your name, company name and an e-mail address. Thanks!');}
}
