function menuOpen(myObject,myProperty) {
	var div = document.getElementById(myObject);
	div.style.display = myProperty;
}


function verifyContactUs() {
	//alert("here");
		missinginfo = "";

	if ((document.contactUs.email.value == "") || 
		   (document.contactUs.email.value.indexOf('@') == -1) || 
		   (document.contactUs.email.value.indexOf('.') == -1)) {
		   	missinginfo += "\n     -  Email address";
		}

	if(document.contactUs.first_name.value == "") {
			missinginfo += "\n     -  First name";
		}

	if(document.contactUs.last_name.value == "") {
			missinginfo += "\n     -  Last name";
		}

	if(document.contactUs.comment.value == "") {
			missinginfo += "\n     -  Comments";
		}

	if (missinginfo != "") {
		missinginfo ="_____________________________\n" +
			"You failed to correctly fill in your:\n" +
		missinginfo + "\n_____________________________" +
			"\nPlease re-enter and submit again!";
		alert(missinginfo);
return false;
}
else return true;
}