 var focus_width=170//图片区宽度
 var focus_height=140//图片区高度
 var text_height=20//文字高度
 var swf_height = focus_height+text_height //flash整个高度
 //pics,links,texts数据可变，但必须一一对应，|为分隔符
 var pics='img2/Snap1.jpg|img2/Snap2.jpg|img2/Snap3.jpg|img2/Snap4.jpg|img2/Snap5.jpg|img2/Snap6.jpg '//图片，要求在同一网站
 var links='http://www.struwill.com/photo_tcdhy.htm|http://www.struwill.com/photo_tcdhy.htm|http://www.struwill.com/photo_tcdhy.htm|http://www.struwill.com/photo_tcdhy.htm|http://www.struwill.com/photo_tcdhy.htm|http://www.struwill.com/photo_tcdhy.htm' //链接地址
  var texts='海淀黄庄馆学员合影|卫生学校学员合影|前门馆学员合影|黑带学员集训|远洋天地少儿跆拳道班|枫桦豪景成人跆拳道班'//文字说明

 document.write('<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 +'">');
 document.write('<param name="allowScriptAccess" value="sameDomain">');
 document.write('<param name="movie" value="pixviewer.swf">'); //swf文件，相对路径或者绝对路径
 document.write('<param name="quality" value="high">');
 document.write('<param name="bgcolor" value="#FFFFFF>'); //字体背景颜色
 document.write('<param name="menu" value="false">');
 document.write('<param name=wmode value="opaque">'); //背景不透明
 document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
 document.write('<embed src="pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#ffffff" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); //和上面的属性一致
 document.write('</object>');
