// #############################################
function writeFlashOrImg (flashSrc,imgSrc)
{
	if (!useRedirect)
	{		// if dynamic embedding is turned on
		if(hasRightVersion)
		{   // if we've detected an acceptable version
			var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="545" height="289">';
			oeTags += '<param name="movie" value="' + flashSrc + '">';
			oeTags += '<param name="menu" value="false">';
			oeTags += '<param name="quality" value="high">';
			oeTags += '<param name="loop" value="false">';
			oeTags += '<embed src="' + flashSrc + '" width="545" height="289" loop="false" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>';
			document.write(oeTags);   // embed the flash movie
		}
		else
		{   // flash is too old or we can't detect the plugin
			// NOTE: height, width are required!
			var alternateContent = '<img src="' + imgSrc + '">';
			
			document.write(alternateContent);  // insert non-flash content
		}
	}
}
// #############################################  