
var focus_width=document.all.ctl00_ContentPlaceHolder1_FlashUse_hflWidth.value//Flash图片宽度
var focus_height=document.all.ctl00_ContentPlaceHolder1_FlashUse_hflHeight.value//Flash图片高度
var text_height=document.all.ctl00_ContentPlaceHolder1_FlashUse_hflTextHeight.value//标题文字高度
var swf_height = document.all.ctl00_ContentPlaceHolder1_FlashUse_hflAllHeight.value//Flash高度=图片高度+文字高度
/*
关键：图片、链接、文字传输参数设置;以“|”号分隔
显示的图片序数以pics图片张数为准，links、texts可以为空或少于pics数
但可能会导至链接或标题出错
*/
var pics=document.all.ctl00_ContentPlaceHolder1_FlashUse_hflPic.value

var links=document.all.ctl00_ContentPlaceHolder1_FlashUse_hflLink.value

var texts=document.all.ctl00_ContentPlaceHolder1_FlashUse_hflTitle.value

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="images/pixviewer.swf"><param name="quality" value="high"><param name="bgcolor" value="#FFFFFF">');
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="images/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>');
