/**
 * Will redirect the page to a region specified in the drop-down box.
 */

function openDir( form ) { 
	var newIndex = form.fieldname.selectedIndex; 
	if ( newIndex == 0 ) { 
		//alert( "Please select a location!" ); 
	} else { 
		cururl = form.fieldname.options[ newIndex ].value; 
		window.location.assign( cururl ); 
	} 
} 

function setDefault( form ) {
	form.fieldname.selectedIndex = 0;
}