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