function checkinfForm(form) {
	if (document.prodinf.first.value == ""){
		alert("Please fill in your first name after clicking <OK>.")
		return false
	}	
	if (document.prodinf.last.value == "") {
		alert("Please fill in your last name after clicking <OK>.")
		return false
	}
	if (document.prodinf.company.value == "") {
		alert("Please fill in your company name after clicking <OK>.")
		return false
	}
	if (document.prodinf.email.value == "" ||	document.prodinf.email.value.indexOf("@") + "" == "-1" || 	document.prodinf.email.value.indexOf(".") + "" == "-1") {
		alert("Please fill in a valid email address after clicking <OK>.")
		return false
	}
	if (document.prodinf.code.value == "") {
		alert("Please fill in your area code or country code after clicking <OK>.")
		return false
	}
	if (document.prodinf.phone.value == "") {
		alert("Please fill in your phone number after clicking <OK>.")
		return false
	}
	if (document.prodinf.prodname.options[0].selected){
		alert("Please select the product you are requesting information on after clicking <OK>.")
		return false
	}
	if (document.prodinf.info.options[0].selected){
		alert("Please select what information you need after clicking <OK>.")
		return false
	}
	if (document.prodinf.promptedby.options[0].selected){
		alert("Please select what prompted you to visit our Website after clicking <OK>.")
		return false
	}
	if (document.prodinf.user.options[0].selected){
		alert("Please select the number of MicroStation users after clicking <OK>.")
		return false
	}
	if (document.prodinf.geopak.value == "") {
		alert("Please fill in your GEOPAK usage after clicking <OK>.")
		return false
	}
	if (document.prodinf.pw.value == "") {
		alert("Please fill in your ProjectWise usage after clicking <OK>.")
		return false
	}
	if (document.prodinf.3d.value == "") {
		alert("Please fill in your 3D usage after clicking <OK>.")
		return false
	}
	
	return true
}