// JavaScript Document
function openDir( form ) { 

	var newIndex = form.quickfind.selectedIndex; 

	{ 

		cururl = form.quickfind.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 
