			<!--
				var submitcount=0;
				function FormValidator(theForm)
				{
					if (theForm.frm_firstName.value == "")
						{ alert("Please enter your First Name"); theForm.frm_firstName.focus(); return (false);}
					else if (theForm.frm_lastName.value == "")
						{ alert("Please enter your Last Name"); theForm.frm_lastName.focus(); return (false);}						
					else if (theForm.frm_position.value == " ")
						{ alert("Please select your Position"); theForm.frm_position.focus(); return (false);}
					else if (theForm.frm_address.value == "")
						{ alert("Please enter your Address"); theForm.frm_address.focus(); return (false);}
					else if (theForm.frm_city.value == "")
						{ alert("Please enter your City/Town"); theForm.frm_city.focus(); return (false);}
					else if (theForm.frm_stateProv.value == "")
						{ alert("Please enter your State/Province"); theForm.frm_stateProv.focus(); return (false);}
					else if (theForm.frm_country.value == "")
						{ alert("Please enter your Country"); theForm.frm_country.focus(); return (false);}
					else if (theForm.frm_zipPostal.value == "")
						{ alert("Please enter your zip/Postal Code"); theForm.frm_zipPostal.focus(); return (false);}
					else if (theForm.frm_email.value == "")
						{ alert("Please enter your Email Address"); theForm.frm_email.focus(); return (false);}
						
					if(!check_email(theForm.frm_email.value)){
								alert("Please enter a proper email address.");
								theForm.frm_email.focus(); 
							return false;
						}
						
						
					function check_email(e) {
						ok = "1234567890qwertyuiop[]asdfghjklzxcvbnm.@-_QWERTYUIOPASDFGHJKLZXCVBNM";
							for(i=0; i < e.length ;i++){
								if(ok.indexOf(e.charAt(i))<0)
								{ 
									return (false);
								}	
						}
						
						if (document.images) {
						re = /(@.*@)|(\.\.)|(^\.)|(^@)|(@$)|(\.$)|(@\.)/;
						re_two = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
						
							if (!e.match(re) && e.match(re_two)) 
							{
								return (-1);		
							} 
						}
						}
						
						
						if (submitcount == 0)
						  {
						  submitcount++;
						  theForm.btn_submit.value = "Sending ..."
						  return true;
						  }
					   else 
						  {
						  alert("Your information is currently being submitted.\n\You will be taken to the download page as soon as it is done");
						  return false;
						  }

						
				}	
			//-->
