//
//	JavaScript Copyright (C) 2001 Mikkel Bergmann All rights reserved.
//
// 	Purpose: Write hyperlinks to a HTML file, to make it easy to keep many pages, with the same links, all from one file!
//

var netscape4 = (document.layers) ? 1 : 0;
var internet4 = (document.all) ? 1 : 0;

document.write("<select size=\"1\" name=\"D1\" style=\"font-family: Verdana; font-size: 10px; background-color: #125801;" + "color: #FFFFFF\" onchange=\"Javascript:open_window(this.options[this.selectedIndex].value);this.selectedIndex=0;\">" +
"<option selected>[ questions ]</option>" +
"<option value=\"why_sdevon.htm\">Why S.Devon</option>" +
"<option value=\"what_is_tco.htm\">What is TCO</option>" +
"<option value=\"What_plans.htm\">What plans</option>" +
"<option value=\"What_plans.htm\">Test</option>" +
"</select>" +
"");

// Could make it specific per browser...

if ( netscape4 ) 
{

} else if ( internet4 ) {

}


