function swf_banner(width, height, video, flashVars) {
    var player = '';
    player = player + '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"';
    if (width > 0) {
        player = player + ' width="'+width+'"';
    }
    if (height > 0) {
        player = player + ' height="'+height+'"';
    }
    player = player + '>';
    player = player + '<param name="movie" value="'+video+'" />';
    if (flashVars != undefined) {
        player = player + '<param name="flashVars" value="'+escape(flashVars)+'" />';
    }
    player = player + '<param name="quality" value="high" />';
    player = player + '<param name="wmode" value="transparent" />';
    player = player + '<param name="menu" value="0" />';
    player = player + '<embed src="'+video+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" scale="noscale" salign="t" menu="0" autoplay="false" wmode="transparent"';
    if (width > 0) {
        player = player + ' width="'+width+'"';
    }
    if (height > 0) {
        player = player + ' height="'+height+'"';
    }
    player = player + '></embed>';
    player = player + '</object>';
    document.write(player);
}
