function displayFlash (container, id, flashUrl, width, height) {

	 if(DetectFlashVer(7,0,0) == true) {
	 
	     var flashHtml = 
	              '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
	            + ' id="' + id + '" '
	 			+ ' width="' + width + '" '
	 			+ ' height="' + height + '" '
				+ ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0">'
	            + ' <param name="movie" value="' + flashUrl + '">'
	            + ' <param name="quality" value="high">'
	            + ' <param name="wmode" value="opaque">'
	            + ' <embed src="' + flashUrl + '" '
				+ '  width="' + width + '" '
				+ '  height="' + height + '" '
				+ '  quality="high" '
	            + '  wmode="opaque" '
	            + '  type="application/x-shockwave-flash" '
	            + '  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"> '
	            + ' </embed>'
	            + '</object>';
	            
	     container.innerHTML = flashHtml;
     
	 }
	 
}