function myOnLoad() {
    if (isIE()) {
	with (document.body) {
	    scroll = "yes"
	    style.scrollbarFaceColor = "#A31A2A"
	    style.scrollbarDarkShadowColor = "#A31A2A"
	    style.scrollbarHighlightColor = "#FF9999"
	    style.scrollbarArrowColor = "#FFF5E0"
	    style.scrollbarTrackColor = "#F7E3B6"
	    style.scrollbar3dLightColor = "#FFF3D7"
	    style.scrollbarShadowColor = "#660000"
	}
    }

    return true;
}


function statusMsg(msg) {
    status=msg;
    return true;
}

function isNav() {
	return (navigator.appName == "Netscape")
}

function isNav4_7x() {
	var vers = parseFloat(navigator.appVersion)
	return (isNav() && vers >= 4.7 && vers < 6.0)
}

function isIE() {
	return (navigator.appName == "Microsoft Internet Explorer")
}


/* Workaround: NN reload on resize */
function reDo() {
   if (innerWidth != origWidth || innerHeight != origHeight) 
      location.reload();
}

NS4 = document.layers;
if (NS4) {
  origWidth = innerWidth;
  origHeight = innerHeight;
}

if (NS4) onresize = reDo;
