function openDir( form ) { 
	var newIndex = form.fieldname.selectedIndex; 
	if ( newIndex >> 0 ) 
	{ 
		cururl = form.fieldname.options[ newIndex ].value; 
		document.location.assign( cururl ); 
	} 
		 
	else return true; 
} 
