function openDir( form, box, boxname) {

if (document.getElementById("FileSecurityTable")){
		document.getElementById("FileSecurityTable").style.display = 'none';
}


if (document.getElementById(box)){
var newIndex = document.getElementById(box).selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Please " + boxname ); 
	} else { 
		
		cururl = document.getElementById(box).options[ newIndex ].value; 

		window.location.assign( cururl ); 

	}
}
 }
