function LoadFlashMovie( theUrl, theWidth, theHeight, theBgColor ){
    var theBrowser;

	document.write( '<object id="site" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + theWidth + '" height="' + theHeight + '" align="middle">' +
                    '<param name="allowScriptAccess" value="sameDomain" />' +
                    '<param name="movie" value="' + theUrl + '" />' + 
                    '<param name="quality" value="high" />' + 
                    '<param name="bgcolor" value="' + theBgColor + '" />' + 
                    '<param name="salign" value="t" />' + 
                    '<param name="scale" value="noscale" />' + 
					'<param name="wmode" value="transparent">' +
                    '<embed wmode="transparent" name="site" id="site" src="' + theUrl + '" quality="high" bgcolor="' + theBgColor + '" width="' + theWidth + '" height="' + theHeight + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
                    '</object>' );
}
