 function openWindow(url, w, h) {
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=yes,scrollbars=auto,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
 }
 function checkQuoteForm(f){
	if (f.Customer_Name.value == ""){
		alert("Missing Name");
		return false;
	}
	if (f.Customer_Address.value == ""){
		alert("Missing Address");
		return false;
	}
	if (f.Customer_City.value == ""){
		alert("Missing City");
		return false;
	}
	if (f.Customer_State.value == ""){
		alert("Missing State");
		return false;
	}
	if (f.Customer_Phone.value == ""){
		alert("Missing Phone");
		return false;
	}
	if (f.Customer_Email.value == ""){
		alert("Missing Email");
		return false;
	}
	return true;
}
 function checkContactForm(f){
	if (f.Customer_Name.value == ""){
		alert("Missing Name");
		return false;
	}
	if (f.Customer_Email.value == ""){
		alert("Missing Email");
		return false;
	}
	if (f.Customer_Comments.value == ""){
		alert("Missing Comments");
		return false;
	}
	return true;
}