function formValidator(theForm){

		
		if (theForm.reg_city.value == "")
		{
			alert("Please select a city you wish to attend.");
			theForm.reg_city.focus();
			return (false);
			}

		if (theForm.first_name.value == "")
		{
			alert("Please enter a value for the \"First Name\" field.");
			theForm.first_name.focus();
			return (false);
			}


		if (theForm.last_name.value == "")
		{
			alert("Please enter a value for the \"Last_Name\" field.");
			theForm.last_name.focus();
			return (false);
			}


		if (theForm.company.value == "")
		{
			alert("Please enter a value for the \"Company\" field.");
			theForm.company.focus();
			return (false);
			}


		if (theForm.title.value == "")
		{
			alert("Please enter a value for the \"Title\" field.");
			theForm.title.focus();
			return (false);
			}

		if (theForm.address1.value == "")
		{
			alert("Please enter a value for the \"Address\" field.");
			theForm.address1.focus();
			return (false);
			}

		if (theForm.address2.value == "")
		{
			alert("Please enter a value for the \"City, State and Zip\" field.");
			theForm.address2.focus();
			return (false);
			}
		
		if (theForm.phone.value == "")
		{
			alert("Please enter a value for the \"Phone\" field.");
			theForm.phone.focus();
			return (false);
			}
		if (theForm.email.value == "")
		{
			alert("Please enter a value for the \"E-mail\" field.");
			theForm.email.focus();
			return (false);
			}


				rb1 = new Boolean(document.theForm.client[0].checked);
				rb2 = new Boolean(document.theForm.client[1].checked);
				if (rb1 == false && rb2 == false){
				alert("Are you currently a client of NetRatings?");
				theForm.client[0].focus();				
				return (false);
				}

		

		return (true);
		}

