﻿var path=null;
var width=null; 
var height=null;
function flash(path,width,height)
{ 
    this.path=path;
    this.width=width;
    this.height=height;
    var str=null;
    str = "<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='" + this.width + "' height='" + this.height + " id='nfs_nav_flash' >"
    + "<param name='movie' value='" + this.path + "' />"
    + "<param name='quality' value='high' />"
    + "<param name='src' value='" + this.path + "' />"
    //+ "<param name='wmode' value='transparent'>"
    + "<param name='wmode' value='opaque'>"
    + "<embed src='" + this.path + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + this.width + "' wmode='opaque' height='" + this.height + "'>"
    +"</embed>"
    +"</object>"
    //alert(str);
    document.write(str);
}
