// JavaScript Document
function openDir( form ) { 
    var newIndex = form.quicklinks.selectedIndex; 
    if ( newIndex == 0 ) { 
        alert( "Please select a location!" ); 
    } else { 
        cururl = form.quicklinks.options[ newIndex ].value; 
        window.location.assign( cururl ); 
    } 
}