/* JavaScript Document

document.write('<div id=img1jinhonglei style=position:absolute; Z-INDEX: 1000; margin-top:40px;>');
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cabversion=6,0,0,0" width="600" height="600">');
document.write('<param name=movie value="http://100un.cn/pop1/nongli2010.swf">');
document.write('<param name=wmode value="transparent">');
document.write('<param name="quality" value="high" />');
document.write('<embed src="http://100un.cn/pop1/guoqing.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="600" height="600" wmode="transparent"></embed>');	
document.write('</object>');
document.write('</div>');

var xPos = 250;
var yPos = 60; 
var step = 1;
var delay = 30; 
var height = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
img1jinhonglei.style.top = yPos;
img1jinhonglei.style.left = xPos;
function changePos() 
{
	width = document.documentElement.clientWidth;
	height = document.documentElement.clientHeight;
	Hoffset = img1jinhonglei.offsetHeight;
	Woffset = img1jinhonglei.offsetWidth;
	img1jinhonglei.style.left = xPos + document.documentElement.scrollLeft;
	img1jinhonglei.style.top = yPos + document.documentElement.scrollTop;
	if (yon) 
		{yPos = yPos + step;}
	else 
		{yPos = yPos - step;}
	if (yPos < 0) 
		{yon = 1;yPos = 0;}
	if (yPos >= (height - Hoffset)) 
		{yon = 0;yPos = (height - Hoffset);}
	
	
	if (xPos >= (width - Woffset)) 
		{xon = 0;xPos = (width - Woffset);   }
	}
	
	function start()
	 {
	 	img1jinhonglei.visibility = "visible";
		
	}
	function pause_resume() 
	{
		if(pause) 
		{
			clearInterval(interval);
			pause = false;}
		else 
		{
			interval = setInterval('changePos()',delay);
			pause = true; 
			}
		}
	start();
*/
