var okayTimer = false;

function setOkay(){
	okayTimer = true;
}

setTimeout('setOkay()', 500)

function netscapeFix(){
	if (document.layers && okayTimer){
		self.location.reload();
	}
	if (! document.layers){
		leftbardiv.style.height = "100%"
	}
}

function doOnload(){
	var lowest=0;
	if (document.all){
		for (i=0; i<document.all.length; i++){
			if (document.all[i].style.posTop + document.all[i].clientHeight > lowest){
				lowest = document.all[i].style.posTop + document.all[i].clientHeight;
			}
		}
		leftbardiv.style.height = lowest;
	}
}