﻿function initEcAd() {
document.all.LeftADS.style.posTop = 200;
document.all.LeftADS.style.visibility = 'visible'
document.all.RightADS.style.posTop = 200;
document.all.RightADS.style.visibility = 'visible'
MoveLeftLayer('LeftADS');
MoveRightLayer('RightADS');
}
function MoveLeftLayer(layerName)
{
var x = 5;
var y = 5 ;
var diff = (document.body.scrollTop + y - document.all.LeftADS.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = y");
eval("document.all." + layerName + ".style.posLeft = x");
setTimeout("MoveLeftLayer('LeftADS');", 20);
}
function MoveRightLayer(layerName)
{
var x = 5;
var y = 5;
var diff = (document.body.scrollTop + y - document.all.RightADS.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('RightADS');", 20);
}
initEcAd()

