
/* -- for stylesheet -- */
var w = (navigator.platform=="Win32" && navigator.appName=="Microsoft Internet Explorer") ? "ie_style.css" : "nn_style.css";
document.write('<link rel="STYLESHEET" type="text/css" href="stylesheet/' + w + '">');

/* --  onload, active button -- */
function window_onload()
{
	//reference to roll.js
	LoadActiveImage();
}


/* -- 7 script - alternative for stylesheet --
var lnk = '<link rel=STYLESHEET TYPE="text/css" href="stylesheet/';
var v = navigator.appVersion;
var a = navigator.appName;
var useNN = false;
if (a.indexOf('Netscape')> -1 )
{
	if (v.indexOf('3')> -1 | v.indexOf('4')> -1)
	{
		useNN = true;
	}
}
lnk += (useNN) ? 'nn_style.css' : 'ie_style.css';
lnk += '">';
document.writeln(lnk);
 
function go(what) {
  value = what.options[what.selectedIndex].value;
  if (value == '') return;
  window.location.href = value;
}
-- */

