function openWindow(link,windowName){
	window.open (link,windowName);
}

function backToFAQ(){
	parent.location = "http://www.poolremoval.net/faq/faq.html";
}

function validateForm() {
	/*
	alert (document.quoteForm.startDate.options[document.quoteForm.startDate.selectedIndex].value);
	if ((document.quoteForm.startDate == "Dash") || (document.quoteForm.startDate == "Selected") )
		{
		alert ('Please select a valid project start date');
		return false;
		}
	*/
	if (document.quoteForm.terms.checked == false)
		{
		alert ('Please read the terms and conditions and agree to it if you want to submit your request');
		return false;
		}
	else
		{
		return true;
		}
}