﻿   //首页轮换图 
    function Flashow(pics,links,texts)
    {
					var focus_width=270;
					var focus_height=200;
					var text_height=0;
					var swf_height = focus_height+text_height;				              
					var str = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">'+
					'<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="viewer.swf"><param name="quality" value="high"><param name="bgcolor" value="#dfdfdf">'+
					'<param name="menu" value="false"><param name=wmode value="opaque">'+
					'<param name="FlashVars" value="pics='+pics+'&links='+escape(links)+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">'+
					'</object>';
			document.getElementById("divFlashShow").insertAdjacentHTML('afterBegin',str);
			
   }	