// Jump menu
function openDir( jumpform ) { 

	var newIndex = jumpform.menu.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Please select a location!" ); 
	} else { 
		cururl = jumpform.menu.options[ newIndex ].value; 
		window.location.assign( cururl ); 
	} 

} 
