function show_banner(flash_width, flash_height, FlashFileName) {
    if( typeof( window.innerWidth ) == 'number' ) {
        center_x = Math.round((window.innerWidth / 2)-(flash_width/2));
        center_y = 145;
    } else {
        center_x = Math.round((document.body.clientWidth/2)-(flash_width/2));
        center_y = 145;
    }

    document.write('<div id="banner" style="display: block; background: transparent; position: absolute; top: ' + center_y + 'px; left: ' + center_x + 'px; z-index: 1000; " />');
    document.write('<script type="text/javascript">\n');
    document.write('<!--AC_FL_RunContent(\'codebase\',\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\',\'width\',\'' + flash_width + '\',\'height\',\'' + flash_height + '\',\'src\',\'' + FlashFileName + '\',\'wmode\',\'transparent\',\'quality\',\'high\',\'pluginspage\',\'http://www.macromedia.com/go/getflashplayer\',\'movie\',\'' + FlashFileName + '\');--></script><noscript>');
    document.write('<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="' + flash_width + '" height="' + flash_height + '" />');
    document.write('<param name="movie" value="' + FlashFileName + '.swf" />');
    document.write('<param name="bcolor" value="#ffffff" />');
    document.write('<param name="wmode" value="transparent" />');
    document.write('<param name="quality" value="high" />');
    document.write('<embed src="' + FlashFileName + '.swf" wmode="transparent" quality="high" bgcolor="#ffffff" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + flash_width + '" height="' + flash_height + '" /></embed>');
    document.write('</object></noscript>');
    document.write('</div>');
}

function hideme() {
  if (document.getElementById){
  		target = document.getElementById('banner');
		target.style.display = "none";
  }
}
