<!--
function checkIt() {
	var submitit = 1;
	
	if (document.contact.Name.value == "") {
		alert('Please enter your Name!');
		submitit = 0;
		}
	if ((document.contact.Email.value == "") && (document.contact.Phone.value == "")) {
		alert('You need to enter your email address or phone number so that we can contact you!');
		submitit = 0;
		}
	if (document.contact.Product.value == "Select Product") {
		alert('You need to select the product in which you are interested!');
		submitit = 0;
		}
	if (submitit == 1) {
		document.contact.submit();
		}
	}
//-->