function popJump(selOBJ)
{
	n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
}

//-----------------------------------------------

makerName = new Array("toyota","nissan","daihatsu","subaru","suzuki","rover","mercedes");

var styleSelectors=""

for(i=1;i<makerName.length;i++){
		styleSelectors += "#"+makerName[i]+","
}
styleSelectors = styleSelectors.slice(0,-1);
document.writeln('<style type="text/css">'+styleSelectors+'{display:none;}</style>');


//-----------------------------------------------
function showDetail(maker){
	
	selectedMaker=maker.options[maker.selectedIndex].value
	
	for(i=0;i<makerName.length;i++){
		document.getElementById(makerName[i]).style.display="none";
	}
	
	document.getElementById(selectedMaker).style.display="inline";
	
}

//-----------------------------------------------
function pageSearch(){
	var aaa=""
	for(i=0;i<makerName.length;i++){
		if(document.getElementById(makerName[i]).style.display=="inline"){
			aaa = document.getElementById(makerName[i]);
		}
	}
	if(aaa==""){
		aaa = document.getElementById(makerName[0])
	}
	location.href = aaa.value;
}


