function formValidator(theForm){

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

		if (theForm.company.value == "")
		{
			alert("Please enter a value for the \"Company\" field.");
			theForm.company.focus();
			return (false);
			}
			
		if (theForm.industry.value == "")
		{
			alert("Please enter a value for the \"Industry\" field.");
			theForm.industry.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 \"Email\" 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 a Nielsen//NetRatings client?");
				theForm.client[0].focus();				
				return (false);
				}
		
		return (true);
		}

