<!--
function ShowFlash(divObj, CLSID, CodeBase, Width, Height, FlashLocation)
{
	var leftFlsh = getObj(divObj);
	leftFlsh.innerHTML = '<object classid="' + CLSID + '" codebase="' + CodeBase + '" width="' + Width + '" height="' + Height + '"><param name="movie" value="' + FlashLocation + '"><param name="quality" value="high"><embed src="' + FlashLocation + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + Width + '" height="' + Height + '"></embed></object>';
}

function getObj(name)
{
  var objFind;
  var whereit;
  if (document.getElementById)
  {
      objFind = document.getElementById(name);
  }
  else if (document.all)
  {
      objFind = document.all[name];
  }
  else if (document.layers)
  {
      objFind = document.layers[name];
  }
  return objFind;
}
-->
