lastScrollY = 0;
left_bar_code = '<div id="left_bar" style="position:absolute; top:150px; left:1px;"></div>';
right_bar_code = '<div id="right_bar" style="position:absolute; top:150px; right:1px;"><iframe id="gb" border="0" vspace="0" hspace="0" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="no" width="90" height="162" src="/kf.htm"></iframe></div>';

if (window.screen.width >= 900) {
	document.write(left_bar_code);
	document.write(right_bar_code);
	function heartBeat() {
		diffY = document.body.scrollTop;
		percent = .1*(document.documentElement.scrollTop - lastScrollY);
		if(percent > 0) {
			percent=Math.ceil(percent);
		} else {
			percent=Math.floor(percent);
		}
	var a = document.getElementById("left_bar").style.top = parseInt(document.getElementById("left_bar").style.top) + percent+"px";
	var b = document.getElementById("right_bar").style.top = parseInt(document.getElementById("right_bar").style.top) + percent+"px";
	lastScrollY = lastScrollY + percent;
	}
	
	window.setInterval("heartBeat()",1);
}

function hideFloatBanner() {
	document.getElementById("left_bar").style.display = "none";
	document.getElementById("right_bar").style.visibility = "hidden";
}













function killErrors() {
return true;
}
window.onerror = killErrors




function maxWin() {
	if (parseInt(navigator.appVersion)>3) {
		  if (navigator.appName=="Netscape") {
			   if (top.screenX>0 || top.screenY>0) top.moveTo(0,0);
			   if (top.outerWidth < screen.availWidth) top.outerWidth=screen.availWidth;
			   if (top.outerHeight < screen.availHeight) top.outerHeight=screen.availHeight;
		  }
		  else {
			   top.moveTo(-4,-4);
			   top.resizeTo(screen.availWidth+8,screen.availHeight+8);
		  }
	}
}




maxWin();


