<!--
function drawFlashMovie(theMovie,theID,theWidth,theHeight,theBackgroundColor){
	if(hasRightVersion) {  // if we've detected an acceptable version
		var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
		+ 'width="'+theWidth+'" height="'+theHeight+'"'
		+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+theID+'">'
		+ '<param name="movie" value="'+theMovie+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="wmode" value="transparent" /><param name="bgcolor" value="'+theBackgroundColor+'" />'
		+ '<embed src="'+theMovie+'" loop="false" menu="false" quality="high" scale="noscale" salign="lt" wmode="transparent" bgcolor="'+theBackgroundColor+'" '
		+ 'width="'+theWidth+'" height="'+theHeight+'" name="'+theID+'" align="middle"'
		+ 'play="true"'
		+ 'loop="false"'
		+ 'quality="high"'
		+ 'allowScriptAccess="sameDomain"'
		+ 'type="application/x-shockwave-flash"'
		+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
		+ '<\/embed>'
		+ '<\/object>';
		document.write(oeTags);
	  } else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<span class="noFlash">!<br>'
		+ 'This content requires the Macromedia Flash Player.<br>'
		+ '<a href="http://www.macromedia.com/go/getflash/">Get Flash</a></span>';
		document.write(alternateContent);  // insert non-flash content
	  }
}
// -->
