﻿// JScript 文件
var delta=0.8;
	var collection;
	var closeB=false;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					window.document.write('<DIV id="wodejia" style="z-index:100px; position:absolute; width:260px; height:250px; font:9pt; ">'+content+'</DIV>');
				  }
                   this.play	= function()
				  {
                       setTimeout("play()", 600);
				  }
		}
		function play()
		{
    var mun=document.getElementById("wodejia");
    var st=document.documentElement.scrollTop+360;
    mun.style.top=st;
    setTimeout("play()", 600);
		}	
		function closeBanner()
		{
			var mun=document.getElementById("wodejia");
			mun.style.display='none';
		}

	



