
function validateContact(formobj)
{
	var alertMsg = "Please provide the following information:\n";
	
	var msgLength = alertMsg.length;

	//Check for empty fields (user details only... not checking order info yet - make default amount 1 though)
	if (document.orderform.name.value == "") alertMsg += "-Name\n";
	if (document.orderform.email.value == "") alertMsg += "-Email\n";
	if (document.orderform.comments.value == "") alertMsg += "-Comments\n";

	if (alertMsg.length == msgLength){
		return true;
	}else{
		alert(alertMsg);
		return false;
	}
}


