function   winload()  {   
 
  document.all.layer2.style.posTop   =   -200;   
  document.all.layer2.style.visibility   =   'visible'   
 setTimeout("MoveRightLayer('layer2');",   20);  
  }   
  
  function   MoveRightLayer(layerName)   {   
  var   x   =   5;   
  var   y   =   165;   
  var docuTop = document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop;
  var diff = (docuTop + y - document.all.layer2.style.posTop)*.40;
  var y = docuTop + y - diff; 
  eval("document.all."   +   layerName   +   ".style.posTop   =   y");   
  eval("document.all."   +   layerName   +   ".style.posRight   =   x");   
  setTimeout("MoveRightLayer('layer2');",   20);   
  }   
{	
	{
	document.write(
	
	"<div id=layer2 style='position: absolute;visibility:visible;z-index:100'><EMBED src='tieshi.swf' quality=high  WIDTH=165 HEIGHT=262 TYPE='application/x-shockwave-flash' id=ad wmode=opaque></EMBED></div>");
	}
  winload()
} 
