<!-- 
function initEcAd() { 
document.all.dgdcc2.style.posTop = -200; 
document.all.dgdcc2.style.visibility = 'visible' 
document.all.dgdcc3.style.posTop = -200; 
document.all.dgdcc3.style.visibility = 'visible' 
MoveLeftLayer('dgdcc2'); 
MoveRightLayer('dgdcc3'); 
} 
function MoveLeftLayer(layerName) { 
var x = 5; 
var y = 50; 
var diff = (document.body.scrollTop + y - document.all.dgdcc2.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('dgdcc2');", 20); 
} 
function MoveRightLayer(layerName) { 
var x = 5; 
var y = 50; 
var diff = (document.body.scrollTop + y - document.all.dgdcc3.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('dgdcc3');", 20); 
} 
document.write("<div id=dgdcc2 style='position: absolute;visibility:visible;z-index:1'><img src='Images/left1.gif' width='96' height='442'></div>"
	+"<div id=dgdcc3 style='position: absolute;visibility:visible;z-index:1'><img src='Images/right.gif' width='96' height='442'></div>"); 
initEcAd() 

//--> 
