function initEcAd() { 

 
document.all.AdLayer2.style.posTop = -100; 
document.all.AdLayer2.style.visibility = 'visible' 

MoveRightLayer('AdLayer2'); 
} 

function MoveRightLayer(layerName) { 
var x = 5; 
var y = 100; 
var diff = (document.body.scrollTop + y - document.all.AdLayer2.style.posTop)*.60; 
var y = document.body.scrollTop + y - diff; 
eval("document.all." + layerName + ".style.posTop = y"); 
eval("document.all." + layerName + ".style.posRight = x"); 
setTimeout("MoveRightLayer('AdLayer2');", 60); 
} 
document.write("<div id=AdLayer2 style='position: absolute;visibility:hidden;z-index:1'><EMBED src='/flash/right.swf' quality=high WIDTH=100 HEIGHT=500 TYPE='application/x-shockwave-flash' id=EccoolAd></EMBED></div>"); 
initEcAd()