
function VehicleChange() {
	if (parseInt(document.quote_form.f_vehicle_num.options[document.quote_form.f_vehicle_num.selectedIndex].text) >= 2) 
		mydiv2.style.display = 'inline'; 
	else mydiv2.style.display = 'none'; 
	if (parseInt(document.quote_form.f_vehicle_num.options[document.quote_form.f_vehicle_num.selectedIndex].text) == 3) 
		mydiv3.style.display = 'inline'; 
	else mydiv3.style.display = 'none'; 
}

function ShowHint(id,msg) { 
	var w = window.open("","hint"+id,"resizable=no,status=no,width=300,height=150"); 
	var d = w.document; 
	d.write('<HTML><HEAD><TITLE>Hint</TITLE><link rel="stylesheet" href="/inc/main.css" type="text/css"></HEAD>'); 
	d.write('<BODY bgcolor=#FCF7DD><P>'+msg+'</P>'); 
	d.write('<DIV align=center><A href="Javascript:self.close()">CLOSE WINDOW</A></DIV>'); 
	d.write('</BODY></HTML>'); 
	d.close(); 
}