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