function validate_quoteG(){var theMessage="Please complete the following: \n-----------------------------------\n";var noErrors=theMessage;if(document.quoteForm.firstName.value==""){theMessage=theMessage+"\n --> Your FirstName";}if(document.quoteForm.lastName.value==""){theMessage=theMessage+"\n --> Your LastName";}if(!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.quoteForm.email.value)){theMessage=theMessage+"\n --> Enter a valid e-mail address";}if(document.quoteForm.phone.value==""){theMessage=theMessage+"\n --> Your Telephone Number";}if(document.quoteForm.address_line_1.value==""){theMessage=theMessage+"\n --> Your Address";}if(document.quoteForm.city.value==""){theMessage=theMessage+"\n --> Your City/Town";}var listCheck=document.quoteForm.country.selectedIndex;if(document.quoteForm.country.options[listCheck].value=="0"){theMessage=theMessage+"\n --> Your Country";}if(document.quoteForm.postcode.value==""){theMessage=theMessage+"\n --> Your Postcode";}if(document.quoteForm.The_nature_of_your_business_and_project_requirement.value==""){theMessage=theMessage+"\n --> 3. Please describe the nature of your business and project requirement";}if(document.quoteForm.What_would_you_like_the_graphic_design_to_achieve.value==""){theMessage=theMessage+"\n --> 4. What would you like the graphic design to achieve?";}var listCheck=document.quoteForm.When_would_you_like_to_start_the_project.selectedIndex;if(document.quoteForm.When_would_you_like_to_start_the_project.options[listCheck].value=="0"){theMessage=theMessage+"\n --> 5. When would you like to start the project? ";}var listCheck=document.quoteForm.Where_did_you_hear_about_us.selectedIndex;if(document.quoteForm.Where_did_you_hear_about_us.options[listCheck].value=="0"){theMessage=theMessage+"\n --> 6. Where did you hear about us? ";}if(theMessage==noErrors){return true;}else{alert(theMessage);return false;}}