document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="top" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="swf/top.swf" /><param name="quality" value="best" /><param name="scale" value="exactfit" /><param name="bgcolor" value="#ffffff" /><embed src="swf/top.swf" quality="best" scale="exactfit" bgcolor="#ffffff" width="100%" height="100%" name="top" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');



function winMin(){

	if (document.all) {                     // for Internet Explorer

		winWidth = document.body.clientWidth;

		winHeight = document.body.clientHeight;



		if(winWidth <= 880){

			objWidth = "880px";

		}else{

			objWidth = "100%";

		}

	  if((winHeight <= 700)){

			objHeight = "700px";

		}else{

			objHeight = "100%";

		}



		if(document.top[0] && document.top[1]){      //for win

			document.top[0].width = objWidth;

			document.top[0].height = objHeight;

			document.top[1].width = objWidth;

			document.top[1].height = objHeight;

		}else{                                                 //for mac

			document.top.width = objWidth;

			document.top.height = objHeight;

		}

	}else{

		if(window.innerWidth <= 880){

			objWidth = "880px";

		}else{

			objWidth = "100%";

		}

	  if((window.innerHeight <= 700)){

			objHeight = "700px";

		}else{

			objHeight = "100%";

		}

	

		document.getElementById('top').width = objWidth;

		document.getElementById('top').height = objHeight;



	}

}