function basicvalidateForm()
{
var x=document.forms["frmQuickQuote"]["frmQQName"].value
if (x==null || x=="")
	{
		alert("Your name must be completed :)");
		return false;
	}
var x=document.forms["frmQuickQuote"]["frmQQEmail"].value
var atpos=x.indexOf("@");
var dotpos=x.lastIndexOf(".");
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length)
  {
  alert("You must enter a valid e-mail address :)");
  return false;
  }
var x=document.forms["frmQuickQuote"]["frmQQDesc"].value
if (x==null || x=="")
	{
		alert("A brief project description must be completed :)");
		return false;
	}	
}
