function WriteTopBannerHtml(strUrl, strWidth, strHeight)
{
    document.write('<div style="position: absolute; top: 30px; left: 161px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + strWidth + '" height="' + strHeight + '" VIEWASTEXT>\n');
    document.write('<param name="allowScriptAccess" value="always" />');
    document.write('<param name="movie" value="' + strUrl + '" />\n');
    document.write('<param name="menu" value="false" />');
    document.write('<param name="quality" value="high" />\n');
    //document.write('<param name="bgcolor" value="#ffffff" />\n');
    document.write('<embed src="' + strUrl + '" quality="high" devicefont="true" wmode="transparent" width="' + strWidth + '" height="' + strHeight + '" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
    document.write('</object></div>\n');
}


function WriteBannerHtml(strUrl, strWidth, strHeight)
{
    document.write('<div xstyle="position: absolute; top: 30px; left: 161px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + strWidth + '" height="' + strHeight + '" VIEWASTEXT>\n');
    document.write('<param name="allowScriptAccess" value="always" />');
    document.write('<param name="movie" value="' + strUrl + '" />\n');
    document.write('<param name="menu" value="false" />');
    document.write('<param name="quality" value="high" />\n');
    //document.write('<param name="bgcolor" value="#ffffff" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
    document.write('<embed src="' + strUrl + '" quality="high" devicefont="true" wmode="transparent" width="' + strWidth + '" height="' + strHeight + '" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
    document.write('</object></div>\n');
}

