							function validateFormQ() 
							{
							 var okSoFar=true
							 with (document.quote_form)
							 {
							  if (name.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Name.")
								name.focus()
							  }
							  
							  if (tel.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Contact number")
								tel.focus()
							  }
							  
				
							  var foundAt = email.value.indexOf("@",0)
							  if (foundAt < 1 && okSoFar)
							  {
								okSoFar = false
								alert ("Please enter a valid email address.")
								email.focus()
							  }
							  
							  if (town.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your City or Town")
								town.focus()
							  }
							  
							    if (serv.value=="Please Select" && okSoFar)
							  {
								okSoFar=false
								alert("Please select a service")
								serv.focus()
							  }
							  
							     if (serv.value=="Non Selected" && okSoFar)
							  {
								okSoFar=false
								alert("Please select a Service")
								serv.focus()
							  }
							  
							    if (desc.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter a description")
								desc.focus()
							  }
							  
							  
							  if (okSoFar==true)  submit();
							 }
							}

