// JavaScript Document
<!--浮动图片开始-->
document.writeln("<DIV id=flyimg1 style=\"Z-INDEX: 999; LEFT: 208px; WIDTH: 100px; POSITION: absolute; TOP: 35px; HEIGHT: 100px\">");
document.writeln("    <TABLE cellSpacing=0 cellPadding=0 width=\"100%\" border=0>");
document.writeln("      <TBODY>");
document.writeln("        <TR>");
document.writeln("          <TD align=right width=\"52%\"><a href=\"http:\/\/xxsj.bjchy.gov.cn/\" target=\"_blank\"><img src=\"\/images\/chaoyang_kxfloat.jpg\" border=\"0\"><\/a> <\/TD>");
document.writeln("        <\/TR>");
document.writeln("      <\/TBODY>");
document.writeln("    <\/TABLE>");
document.writeln("  <\/DIV>");
document.writeln("  <DIV id=flyimg2 style=\"Z-INDEX: 90; LEFT: 208px; WIDTH: 100px; POSITION: absolute; TOP: 35px; HEIGHT: 100px\">");
document.writeln("    <TABLE cellSpacing=0 cellPadding=0 width=\"100%\" border=0>");
document.writeln("      <TBODY>");
document.writeln("        <TR>");
document.writeln("          <TD align=right width=\"52%\"><a href=\"\/zcws\/index.html\" target=\"_blank\"><img src=\"\/images\/zcws_float.jpg\" border=\"0\"><\/a> <\/TD>");
document.writeln("        <\/TR>");
document.writeln("      <\/TBODY>");
document.writeln("    <\/TABLE>");
document.writeln("  <\/DIV>")
if(document.getElementById("flyimg1")){
	var xPos1=100;
	var yPos1=500;
	var step1=1;
	var delay=1;
	var height1=0;
	var Hoffset1=0;
	var Woffset1=0;
	var yon1=0;
	var xon1=0;
	var pause1=true;
	var interval1;
	flyimg1.style.top=yPos1;
	function changePos1(){
		width1=((document.documentElement.clientWidth==0)?document.body.clientWidth:document.documentElement.clientWidth);
		height1=((document.documentElement.clientHeight==0)?document.body.clientHeight:document.documentElement.clientHeight);
		Hoffset1=flyimg1.offsetHeight;
		Woffset1=flyimg1.offsetWidth;
		flyimg1.style.left=xPos1+((document.documentElement.scrollLeft==0)?document.body.scrollLeft:document.documentElement.scrollLeft);
		flyimg1.style.top=yPos1+((document.documentElement.scrollTop==0)?document.body.scrollTop:document.documentElement.scrollTop);
		if(yon1){yPos1=yPos1+step1;
		}else{
			yPos1=yPos1-step1;
		}if(yPos1<0){
			yon1=1;
			yPos1=0;
		}if(yPos1>=(height1-Hoffset1)){
			yon1=0;
			yPos1=(height1-Hoffset1);
		}
		if(xon1){
			xPos1=xPos1+step1;
		}else{
			xPos1=xPos1-step1;
		}
		if(xPos1<0){
			xon1=1;
			xPos1=0;
		}if(xPos1>=(width1-Woffset1)){
			xon1=0;
			xPos1=(width1-Woffset1);
		}
	}

	function start1(){
		flyimg1.visibility='visible';
		interval1=setInterval('changePos1()',delay);
	}
start1();
}

if(document.getElementById("flyimg2")){
	var xPos2=600;
	var yPos2=100;
	var step2=1;
	var delay=1;
	var height2=0;
	var Hoffset2=0;
	var Woffset2=0;
	var yon2=0;
	var xon2=0;
	var pause2=true;
	var interval2;
	flyimg2.style.top=yPos2;
	function changePos2(){
		width2=((document.documentElement.clientWidth==0)?document.body.clientWidth:document.documentElement.clientWidth);
		height2=((document.documentElement.clientHeight==0)?document.body.clientHeight:document.documentElement.clientHeight);
		Hoffset2=flyimg2.offsetHeight;
		Woffset2=flyimg2.offsetWidth;
		flyimg2.style.left=xPos2+((document.documentElement.scrollLeft==0)?document.body.scrollLeft:document.documentElement.scrollLeft);
		flyimg2.style.top=yPos2+((document.documentElement.scrollTop==0)?document.body.scrollTop:document.documentElement.scrollTop);
		if(yon2){yPos2=yPos2+step2;
		}else{
			yPos2=yPos2-step2;
		}if(yPos2<0){
			yon2=1;
			yPos2=0;
		}if(yPos2>=(height2-Hoffset2)){
			yon2=0;
			yPos2=(height2-Hoffset2);
		}
		if(xon2){
			xPos2=xPos2+step2;
		}else{
			xPos2=xPos2-step2;
		}
		if(xPos2<0){
			xon2=2;
			xPos2=0;
		}if(xPos2>=(width2-Woffset2)){
			xon2=0;
			xPos2=(width2-Woffset2);
		}
	}

	function start2(){
		flyimg2.visibility='visible';
		interval2=setInterval('changePos2()',delay);
	}
start2();
}

<!--浮动图片结束-->