// JavaScript Document
function validate(){

	if(document.quickquote.name.value == "Name") {
		alert("Please enter your name");
		document.quickquote.name.focus();
		return false;
	}	
	if(document.quickquote.phone.value == "Phone") {
		alert("Please enter phone");
		document.quickquote.phone.focus();
		return false;
	}	
	if(document.quickquote.email.value == "Email") {
		alert("Please enter email");
		document.quickquote.email.focus();
		return false;
	}	
	if(document.quickquote.comments.value == "Comments") {
		alert("Please enter your comments");
		document.quickquote.comments.focus();
		return false;
	}
	return true;
}
