function Check_Form(theForm)
{
								if (theForm.company.value == "")
								 {
									alert("Please enter the name of your company");
									theForm.company.focus();
									return (false);
								 }

							    if (theForm.email.value == "")
								 {
									alert("Please enter your e-mail address");
									theForm.email.focus();
									return (false);
								 }
										
	
								   if (theForm.address1.value == "")
								 {
									alert("Please enter the address of your company");
									theForm.address1.focus();
									return (false);
								 }	

								   if (theForm.city.value == "")
								 {
									alert("Please enter your city");
									theForm.city.focus();
									return (false);
								 }		
								 
								  if (theForm.state.value == "")
								 {
									alert("Please enter your state/province");
									theForm.state.focus();
									return (false);
								 }		
								 
								 if (theForm.zip_code.value == "")
								 {
									alert("Zip or postal code is required!");
									theForm.zip_code.focus();
									return (false);
								 }		
															
								 
								 if (theForm.phone_no.value == "")
								 {
									alert("Phone number is required!");
									theForm.phone_no.focus();
									return (false);
								 }						
 								if (theForm.attn.value == "")
								 {
									alert("Please enter the contact person");
									theForm.attn.focus();
									return (false);
								 }
							}		