function flashShow()
{
    var focus_width=200;
    var focus_height=150;
    var text_height=10;
    var pics=links=texts="";
    var strArr=new Array();
    this.fWidth=focus_width;
    this.fHeight=focus_height;
    this.tHeight=text_height;
    this.addItem=function(str){
        strArr.push(str);
    }
    this.play=function(){
        for (var i=0;i<strArr.length;i++)
        {
            var tmpArr=strArr[i].split("|");
            if (tmpArr[0].match(/\.jpg$/i)==false) continue;
            pics+=tmpArr[0]+"|";
            links+=tmpArr[1]+"|";
            texts+=tmpArr[2]+"|";
        }
        pics=pics.replace(/\|$/,"");
        links=links.replace(/\|$/,"");
        texts=encodeURI(texts.replace(/\|$/,""));
        focus_width=this.fWidth;
        focus_height=this.fHeight;
        text_height=this.tHeight;
        var swf_height=focus_height+text_height;
        document.writeln("<\script type=\"text/javascript\">");
        document.writeln("AC_FL_RunContent( \"codebase\",\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\",\"width\",\""+focus_width+"\",\"height\",\""+swf_height+"\",\"src\",\"swf/pixviewer\",\"quality\",\"high\",\"pluginspage\",\"http://www.macromedia.com/go/getflashplayer\",\"wmode\",\"transparent\",\"FlashVars\",\"pics="+pics+"&links="+links+"&texts="+texts+"&borderwidth="+focus_width+"&borderheight="+focus_height+"&textheight="+text_height+"\",\"movie\",\"swf/pixviewer\" ); //end AC code");
        document.writeln("</\script>");
        document.writeln("<noscript>");
        document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+focus_width+"\" height=\""+swf_height+"\">");
        document.writeln("  <param name=\"movie\" value=\"swf/pixviewer.swf\" />");
        document.writeln("  <param name=\"quality\" value=\"high\" />");
        document.writeln("  <param name=\"wmode\" value=\"transparent\" />");
        document.writeln("  <param name=\"FlashVars\" value=\"pics="+pics+"&links="+links+"&texts="+texts+"&borderwidth="+focus_width+"&borderheight="+focus_height+"&textheight="+text_height+"\" />");
        document.writeln("  <embed FlashVars=\"pics="+pics+"&links="+links+"&texts="+texts+"&borderwidth="+focus_width+"&borderheight="+focus_height+"&textheight="+text_height+"\" src=\"swf/pixviewer.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\""+focus_width+"\" height=\""+swf_height+"\"></embed>");
        document.writeln("</object>");
        document.writeln("</noscript>");
    }
}