﻿var flash = function(){
//    this.pics = "/img/01.jpg|/img/02.jpg|/img/03.jpg|/img/04.jpg|/img/05.jpg";
//    this.links = "1|2|3|4|5";
//    this.texts = "怕怕哦|时间过的好快呀|抓紧时间结婚啦|真的长大了|害怕哦";

    this.show = function(pics, links, texts, focus_width, focus_height, text_height) {
  
//        this.focus_width = 210; // 图片宽度
//    this.focus_height = 165; // 图片高度
//    this.text_height = 30; // 显示的文字高度
//    
//    if(focus_width != undefined)
//        this.focus_width = focus_width;
//    if(focus_height != undefined)
//        this.focus_height = focus_height;
//    if(text_height != undefined)
//        this.text_height = text_height;
    var swf_height = focus_height + text_height;
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
        document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
        document.write('width="' + focus_width + '" ');
        document.write('height="' + swf_height + '">');
        document.write('<param name="allowScriptAccess" value="sameDomain">');
        document.write('<param name="movie" value="/flash/focus.swf">');
        document.write('<param name="quality" value="high">');
        document.write('<param name="bgcolor" value="#fafafa">');
        document.write('<param name="menu" value="false">');
        document.write('<param name=wmode value="opaque">');
        document.write('<param name="FlashVars" ');
        document.write('value="pics=' + pics);
        document.write('&links=' + links);
        document.write('&texts=' + texts);
        document.write('&borderwidth=' + focus_width);
        document.write('&borderheight=' + focus_height);
        document.write('&textheight=' + text_height + '">');
        document.write('<embed src="/flash/focus.swf" ');
        document.write('wmode="opaque" ');
        document.write('FlashVars="pics=' + pics);
        document.write('&links=' + links);
        document.write('&texts=' + texts);
        document.write('&borderwidth=' + focus_width);
        document.write('&borderheight=' + focus_height);
        document.write('&textheight=' + text_height + '" ');
        document.write('menu="false" ');
        document.write('bgcolor="#fafafa" ');
        document.write('quality="high" ');
        document.write('width="' + focus_width + '" ');
        document.write('height="' + focus_height + '" ');
        document.write('allowScriptAccess="sameDomain" ');
        document.write('type="application/x-shockwave-flash" ');
        document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" />');
        document.write('</object>');

    }

}
var flashShow= new flash();

