<!-- Hide from Non-Javascript Browsers
function grabURL(selectBox) {    
	// Set the currentURL to the selected value
        cURL = selectBox.options[selectBox.selectedIndex].value
	test = 'file://g:/_web/UC01_pgp/' + cURL.indexOf("file");
        if (cURL != "none" && test != -1 )
	{            location.href = cURL;
        } else	{
                if (cURL != "none") {
		alert('Invalid location,\n' +
		'select another.\n' + 'Cannot find ' + cURL); 
		}
        }}
// -->