function openDir( form ) { 
	var newIndex = form.auto_select.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Please select another service" ); 
	} else { 
		cururl = form.auto_select.options[ newIndex ].value; 

		window.location.href = cururl;
		
//		window.location.assign( cururl ); 
	} 
} 