<!-- Hide code from non-js browsers
function getQuote(formObj) {
	if(validateForm(formObj)){
		document.amtquote.action="WWTswitcher.php"
		document.amtquote.submit()
	}
	else {return}
}


function validateForm(formObj) {
	document.amtquote.partner.value=partner
	if (getRadioValue(document.amtquote.ys)<1)
	{
		alert("We can only give a quote if you tell us what type of policy you want\nPlease try again");
		return false;
	}
	return true
}	
// end hiding -->
