	function showFlashMovie(flashMovie, subsImg, subsImgAlt, width, height) {
	  hasFlash = navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"];
	  if (!hasFlash) {
		if (!window.ActiveXObject) 
		  hasFlash = false;
		else {
		  try {if (new ActiveXObject('ShockwaveFlash.ShockwaveFlash')) hasFlash = true;}
		  catch (e) { hasFlash = false;}
		}
	  }
	  if (hasFlash) {
		document.write('<EMBED SRC="' + flashMovie + '" WIDTH="' + width + '" HEIGHT="' + height + '" LOOP="true" QUALITY="high">');
	  } else {
		document.write('<IMG SRC="' + subsImg + '" WIDTH="' + width + '" HEIGHT="' + height + '" ALT="' + subsImgAlt + '">');
	  }
	}

