function showFlash(pics,lsLink,lsText,swfW,swfH,txtH,bgColor){
var text_height=0;
var texts="";
if(lsText!=null){text_height=txtH;texts=lsText;}
var links=pics;
var links=lsLink;
var focus_width=swfW;
var focus_height=swfH;
var swf_height = focus_height+text_height;
if(!bgColor) bgColor="#f1f1f1";
var flash='<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 +'">';
flash+='<param name="allowScriptAccess" value="always"><param name="movie" value="/flash/show.swf"><param name="quality" value="high"><param name="bgcolor" value="'+bgColor+'">';
flash+='<param name="menu" value="false"><param name=wmode value="opaque">';
flash+='<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">';
flash+='<embed src="/flash/show.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="'+bgColor+'" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
document.writeln(flash);
}