function RunFlashObject(width, height, path_flash, click_url)
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
   document.write(' codebase="http://active.macromedia.com/flash/cabs/swflash.cab#version=5,0,0,0"');
   document.write(' id=eceAdBanner width=' + width + ' height=' + height + '>');
   document.write(' <param name=movie value="' + path_flash + '?clickTAG=' + click_url + '"> ');
   document.write(' <param name=quality value=autohigh> ');
   document.write(' <embed src="' + path_flash + '?clickTAG=' + click_url + '"');
   document.write(' width=' + width + ' height=' + height + '');
   document.write(' quality=autohigh');
   document.write(' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
   document.write('</embed>');
   document.write('</object>');
}