isLoaded = 1;
var     nGoNavMarginX=0;
var     nGoNavMarginY=5;
var     nScrollBarWidth=16;
var     nScrollBarHeight=16;
var     isMSIE=0;
var     nVersion=3;
var     nInterval=100;
var     isLoaded=0;

function cssinit() {
	nVersion = parseInt (navigator.appVersion);
   if (navigator.appName == "Microsoft Internet Explorer") {
		isMSIE=1;
		if (navigator.userAgent.indexOf ("MSIE 5") != -1) {nVersion = 5;}
	} else {
		isMSIE=0;
      if (nVersion >= 4)	{
			window.captureEvents (Event.MOUSEMOVE);
			jCur= document.layers["GoNav"];   
		}
	}
	if (nVersion >= 4) {window.setInterval ("GoNavMove();", nInterval);}
}

function high(which2) {
  theobject=which2
  highlighting=setInterval("highlightit(theobject)",50)
}

function low(which2) {
  clearInterval(highlighting)
  which2.filters.alpha.opacity=50
}

function low2(which2,v) {
  clearInterval(highlighting)
  which2.filters.alpha.opacity=v
}

function highlightit(cur2) {
  if (cur2.filters.alpha.opacity<100)
    cur2.filters.alpha.opacity+=5
  else if (window.highlighting)
    clearInterval(highlighting)
}

function View(ID) {
	document.location = ID;
}

function Reload() {
  document.location.reload();
}

function SchChange(ID,ST) {
  Reload();  
}
