



<!--


	function ShowInfo(url, name) {
		var hasScroll = "0";
		var hasResize = "0";
					
		var width="440";
		var height="140";
					
		var args = "width="+width+",height="+height+",toolbar=0,scrollbars="+hasScroll+",location=0,statusbar=0,menubar=0,resizable="+hasResize;
		popupWin = window.open("content/info/"+url, name, args);
		popupWin.focus();
			
	}


	function CheckResults() {
		var resultCheck = true;
		if (document.Form1.company.value == "") {
			alert("please provide your company name");
			document.Form1.company.focus();
			resultCheck = false;
		} else if (document.Form1.first_name.value == "") {
			alert("please provide your first name");
			document.Form1.first_name.focus();
			resultCheck = false;
		} else if (document.Form1.last_name.value == "") {
			alert("please provide your last name");
			document.Form1.last_name.focus();
			resultCheck = false;
		} else if (document.Form1.email.value == "") {
			alert("please provide your email address");
			document.Form1.email.focus();
			resultCheck = false;
		}
		
		return resultCheck;
	}
				
				
			//-->
		
		
		


