function verifyContactForm() {

	
	var emailerName = document.getElementById('contactName');
	var emailerEmail = document.getElementById('inputEmail');
	var emailerMessage = document.getElementById('inputMessage');
	var emailerNameLabel = document.getElementById('emailerNameLabel');
	var emailerEmailLabel = document.getElementById('inputEmailLabel');
	var emailerMessageLabel = document.getElementById('inputMessageLabel');
		
	if (emailerName.value == "") {
		emailerNameLabel.style.borderBottom="1px dotted #8a4848";
		alert('Please enter your contact name');
		emailerName.focus();
		return false;
		} else {
			emailerNameLabel.style.borderBottom="none";					
			}
	if (emailerEmail.value == "") {
		emailerEmailLabel.style.borderBottom="1px dotted #8a4848";
		alert('Please enter your email address');
		emailerEmail.focus();
		return false;
		} else {
			emailerEmailLabel.style.borderBottom="none";					
			}
	if (emailerMessage.value == "") {
		emailerMessageLabel.style.borderBottom="1px dotted #8a4848";
		alert('Please type your message');
		emailerMessage.focus();
		return false;
		} else {
			emailerMessageLabel.style.borderBottom="none";					
			}
}
