function validatequote() {
	
	var quoteform = document.contactform;
	quoteform.qemail.style.backgroundColor = "#FFFFFF";
	quoteform.qemail.style.borderColor = "#CCCCCC";
	quoteform.security_code.style.backgroundColor = "#FFFFFF";
	quoteform.security_code.style.borderColor = "#CCCCCC";
	
	if (quoteform.qemail.value == "Email" || quoteform.qemail.value == null) {
		document.getElementById("errormsg").innerHTML = "<img id='errorwarn' src='/images/warning.png' /> Enter an email address";
		quoteform.qemail.style.backgroundColor = "#ff9595";
		quoteform.qemail.style.borderColor = "#888888";
		quoteform.qemail.focus();
		return false;
	} else if(quoteform.security_code.value == "Security Code" || quoteform.security_code.value == null) {
		document.getElementById("errormsg").innerHTML = "<img id='errorwarn' src='/images/warning.png' /> Check anit-spam verification";
		quoteform.security_code.style.backgroundColor = "#ff9595";
		quoteform.security_code.style.borderColor = "#888888";
		quoteform.security_code.focus();
		return false;
	} else return true;		
}
