
function gender() 
{	
	var Gender = (document.customer.Gender.options[document.customer.Gender.selectedIndex].value)
	if (Gender=="male")document.customer.elements[13].value="female";
	if (Gender=="female")document.customer.elements[13].value="male";	
}	

function spouse() 
{	
	var Gender = (document.customer.Gender.options[document.customer.Gender.selectedIndex].value)
	var spouseNo = document.customer.elements[10].value
	var spouseYes = document.customer.elements[9].value

//	alert(document.customer.elements[12].value)

}
		
function simpleCheck() 
{
	if (document.customer.Gender.options[document.customer.Gender.selectedIndex].value == "---") {
		alert("Please select a Primary Gender");} 
		
	if (document.customer.Gender.options[document.customer.Gender.selectedIndex].value != "---") {	
		document.customer.method="post";
		document.customer.target="_self";
		document.customer.action="quote.details.asp?order=1";
		document.customer.submit();		
	}

}	
