function initEcAd() {
document.all.AdLayer1.style.posTop = -200;
document.all.AdLayer1.style.visibility = 'visible'
document.all.AdLayer2.style.posTop = -200;
document.all.AdLayer2.style.visibility = 'visible'
MoveLeftLayer('AdLayer1');
MoveRightLayer('AdLayer2');
}
function MoveLeftLayer(layerName) {
var x = 5;
var y = 200;
var diff = (document.body.scrollTop + y - document.all.AdLayer1.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = parseInt(y)");
eval("document.all." + layerName + ".style.posLeft = x");
setTimeout("MoveLeftLayer('AdLayer1');", 20);
}
function MoveRightLayer(layerName) {
var x = 5;
var y = 200;
var diff = (document.body.scrollTop + y - document.all.AdLayer2.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = y");
eval("document.all." + layerName + ".style.posRight = x");
setTimeout("MoveRightLayer('AdLayer2');", 20);
}
function closead(){
var adban = document.getElementById("AdLayer1");
adban.style.display = "none";
adban = document.getElementById("AdLayer2");
adban.style.display = "none";
}
document.write("<div id='AdLayer1' style='position: absolute;visibility:hidden;z-index:1'>"
+"<img name='right' src='images/right.gif' width='110' height='280' border='0' usemap='#m_right' alt=''><map name='m_right'>"
+"<area shape='rect' coords='90,265,106,278' href='javascript:closead();'  title='' alt='' ></map></div>"
+"<div id='AdLayer2' style='position: absolute;visibility:hidden;z-index:1'>"
+"<img name='left' src='images/left.gif' width='110' height='280' border='0' usemap='#m_left' alt=''><map name='m_left'>"
+"<area shape='rect' coords='90,265,106,278' href='javascript:closead();'  title='' alt='' ></map></div>");

initEcAd();
