// Functions & Preload für HN

agent=navigator.userAgent;
browser=9;

if(agent.substring(0,7)=="Mozilla"){
	if(parseInt(agent.substring(8,9)) >= 3){
		browser=1;
	}
}

ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 ))
ns3 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 ))

if (!ie4&&!ns4)
    window.top.location="/nogo.asp";

/*if (ns4) {
   layer="document.layers";
   style="";
   image="document.layers[\"nav\"].document.images";
} else {
  layer="document.all";
   style=".style";
   image="document.images";
}*/
image="document.images";

function printS(s)
        {
        window.status=s;
        return true;
   }

function clearS()
        {
        window.status="";
        return true
        }

function hiLite(imgDocID, imgObjName) {
      if (browser == 1) {
             eval(image + '["' + imgDocID+ '"].src = ' + imgObjName + '.src');  }}

