
// Copyright (c) 2002-2007 Open2b Software Snc - http://www.open2b.com

var Open2b = {

    DisplayFlash: function(url, w, h, a) {
        var str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+w+'" height="'+h+'"'
            + ( a == 'L' ? ' style="float:left;border:0;padding:0 1em 1em 0;"'
               : ( a == 'R' ? 'style="float:right;border:0;padding:0 0 1em 1em;"' : '' ) ) + '>'
            + '<param name="movie" value="'+url+'">' + '<param name="quality" value="high">'
            + '<embed src="'+url+'" menu="false" quality="high" scale="exactfit" width="'+w+'" height="'+h+'"'
            + ' align="" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">'
            + '</embed></object>';
        if ( a == 'C' ) {
            str = '<div style="text-align:center;padding:1em;">'+str+'</div>';
        } document.write(str);
    }

}
