<!--
function openWin( windowURL, windowName, windowFeatures ) {
	// default to this dimension if no dimension specified
	if ( windowFeatures == "" ) {
		windowFeatures = "width=300,height=340,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=1,left=120, top=80"
	}
	return window.open( windowURL, windowName, windowFeatures ) ; 
} 
// -->

<!-- start hiding script
// no popup window <select onChange="jumpHere( this, false )">
// with popup window <select onChange="jumpHere( this, true )">
function jumpHere (which, win)
{
	n = which.selectedIndex;
	var URL = which.options[which.selectedIndex].value;
	if (win){
		openWindow(URL);
	}
	else{
		window.location.href = URL;
	}
}
// end hiding scrupt --->