// JavaScript Document
<!--
lastScrollY = 0;
function heartBeat(){
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.getElementById("leftDiv").style.top = parseInt(document.getElementById("leftDiv").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
window.setInterval("heartBeat()",1);
//-->
function close_left1(){
    left1.style.visibility='hidden';
}
document.writeln("<style type=\"text\/css\">");
document.writeln("#leftDiv,#rightDiv{background-color:#fff;position:absolute;}");
document.writeln(".itemFloat{height:auto;line-height:5px}");
document.writeln("<\/style>");
document.writeln("<div id=\"leftDiv\" style=\"top:200px;left:30px\">");
//---L1
document.writeln("<div id=\"left1\" class=\"itemFloat\">");
document.writeln("<img src='fileadmin/template/images/float.png' border='0' usemap=\"#Map\"><map name=\"Map\" id=\"Map\"><area shape=\"rect\" coords=\"34,2,44,13\" href=\"javascript:fontSize('yes');\" /><area shape=\"rect\" coords=\"47,2,58,13\" href=\"javascript:fontSize('no');\" /></map>");
document.writeln("<\/div>");
document.writeln("<\/div>");

