// JavaScript Document

function viewMulchImage(a) {

	window.open("mulch_image.php?image="+a,'mywin', 'width=800,height=600,scrollbars=yes');

}
function quoteForm() {
	window.open("quote_form.php",'mywin', 'width=420,height=420,scrollbars=yes');

}

function validateQuoteForm() {

	var validate = 1;
		
	if (document.forms[0].full_name.value == "") {
			
		validate = 0;
		document.forms[0].full_name.style.backgroundColor = "#FFFF99"
			
	}
		
	if (document.forms[0].phone_number.value == "") {
			
		validate = 0;
		document.forms[0].phone_number.style.backgroundColor = "#FFFF99"
			
	}
		
	if (document.forms[0].email_address.value == "") {
			
		validate = 0;
		document.forms[0].email_address.style.backgroundColor = "#FFFF99"
			
	}
		
	if (validate == 1) {
	
		return true;
		
	} else {
		
		document.getElementById("error").style.display="block"
	
		return false;
	}	
	

}
