<!--
function MoveLayer(layerName, l_x, l_y) {
	var x = l_x;//浮动广告层固定于浏览器的x方向位置
	var y = l_y;//浮动广告层固定于浏览器的y方向位置
	var stmnStartPoint, stmnEndPoint, stmnRefreshTimer,stmnGAP1,stmnGAP2;
	stmnGAP1=0;
	stmnGAP2=l_y;

	eval("stmnStartPoint = parseInt(document.all." + layerName + ".style.top, 0)");
	stmnEndPoint = document.body.scrollTop + stmnGAP2;
	if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1;

	if ( stmnStartPoint != stmnEndPoint ) {
		stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 );
		eval("document.all." + layerName + ".style.top = parseInt(document.all." + layerName + ".style.top, 0) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount )");
	}
	eval("document.all." + layerName + ".style.posLeft = x");//移动广告层
	setTimeout("MoveLayer('"+layerName+"',"+l_x+","+l_y+");", 5);//设置5毫秒后再调用函数MoveLayer()
}

if (screen.width >= 1024) {
	var htmlsrc = "qq.htm"
	var sgWidth_caishow_floater = "0"
	var sgHeight_caishow_floater = "0"
	var sgX_caishow_floater = 2;
	var sgY_caishow_floater = 200;
	var sgNS_caishow_floater = (document.layers) ? true : false;
	var caishow_floater_tempname = (Math.random() * 10000).toFixed(0) + "_caishow"
	var sgLayerName_caishow_floater = "Corner_uvwxyz_" + caishow_floater_tempname;
	if (sgNS_caishow_floater) {
		document.write('<LAYER ID="'+sgLayerName_caishow_floater+'" WIDTH='+sgWidth_caishow_floater+' HEIGHT='+sgHeight_caishow_floater+'><iframe src="' + htmlsrc + '" frameborder=0 width=' + sgWidth_caishow_floater + ' height=' + sgHeight_caishow_floater + ' scrolling=no></iframe></LAYER>');
	} else {
		document.write('<DIV ID="'+sgLayerName_caishow_floater+'" STYLE="position:absolute; width:'+sgWidth_caishow_floater+'; height:'+sgHeight_caishow_floater+'; z-index:9; filter: Alpha(Opacity=100); left: '+sgX_caishow_floater+'; top: '+sgY_caishow_floater+';"><iframe src="' + htmlsrc + '" frameborder=0 width=' + sgWidth_caishow_floater + ' height=' + sgHeight_caishow_floater + ' scrolling=no></iframe></DIV>');
	}
	MoveLayer(sgLayerName_caishow_floater, sgX_caishow_floater, sgY_caishow_floater);
}
//-->