// JavaScript Document

<!-- flash滚动焦点图 begin -->

<!--
var focus_width=216//Flash图片宽度
var focus_height=150//Flash图片高度
var text_height=0//标题文字高度
var swf_height = focus_height+text_height//Flash高度=图片高度+文字高度

/*
关键：图片、链接、文字传输参数设置;以“|”号分隔
显示的图片序数以pics图片张数为准，links、texts可以为空或少于pics数
但可能会导至链接或标题出错
*/
var pics='images/Web/flash/hotplay1.jpg|images/Web/flash/hotplay2.jpg|images/Web/flash/hotplay3.jpg|images/Web/flash/hotplay4.jpg'
var links='Heros.htm|caoweiguo.html|chengyongzheng.html|heros.htm'
var texts='a|b|c|d'
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"><param name="movie" value="media/pixviewer.swf"><param name="quality" value="high"><param name="bgcolor" value="#DADADA">');
document.write('<param name="menu" value="false"><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="media/pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#DADADA" 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>');

//-->

<!-- flash滚动焦点图 end -->