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