// Flash write-out code to circumvent the way IE 6 sp1 handles embedded content


function writeEmbedding(theWidth, theHeight, theUrl, theBgColor) {
var flash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+theWidth+'" height="'+theHeight+'" align=""><param name="movie" value="'+theUrl+'" /><param name="quality" value="high" /><param name="wmode" value="'+theBgColor+'" /><param name="menu" value="false" /><embed src="'+theUrl+'" quality="high" name="wmode" width="'+theWidth+'" height="'+theHeight+'" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>';
	document.write(flash);
}