function validateContactForm(theForm){
	try{
		
		var valid = true;
		if (theForm.firstName.value == ""){
			document.getElementById('firstName').style.backgroundColor = "#c99a9a";
			valid = false;
		}
		if (theForm.lastName.value == ""){
			document.getElementById('lastName').style.backgroundColor = "#c99a9a";
			valid = false;
		}
		if (theForm.email.value == ""){
			document.getElementById('email').style.backgroundColor = "#c99a9a";
			valid = false;
		}
		if (theForm.phone.value == ""){
			document.getElementById('phone').style.backgroundColor = "#c99a9a";
			valid = false;
		}
		
		if (valid == false){
	
			//var moreInfo = "Please Provide Information for the Fields in Red:<br />"
			document.getElementById('moreInfoNeeded').innerHTML = '<img src="images/img_contactFail.png" />';
			return false;
			
		}

		return true;
	
	}
	catch(ex){
		alert(ex.toString());	
	}
	
}
