function checkForm(){
                 theform=document.form1

                     // Check that the form has a full name specified in the field called "yourname"
                 if (theform.name.value==""){ 
                     alert("Please provide your name.")
                     theform.name.focus()
                     return false;
                }                   
				    // Check that the form has phone number specified in the field called "Telephone"
                if (theform.phone.value==""){ 
                    alert("Please provide your telephone number.")
                    theform.phone.focus()
                    return false;
                }
				
				if (theform.address.value==""){ 
                    alert("Please provide your address.")
                    theform.address.focus()
                    return false;
                }
				
				if (theform.city.value==""){ 
                    alert("Please provide your City.")
                    theform.city.focus()
                    return false;
                }
				
				if (theform.state.value==""){ 
                    alert("Please provide your State.")
                    theform.state.focus()
                    return false;
                }
				
				if (theform.zip.value==""){ 
                    alert("Please provide your Zip Code.")
                    theform.zip.focus()
                    return false;
                }

				   
				
                return true;
                }
