<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Vladimir Geshanov -->
<!-- Web Site:  http://hotarea.com/ -->

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

