function FlashInstalled()
{
  result = false;

  if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"])
  {
    result = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
  }

  else if (document.all && (navigator.appVersion.indexOf("Mac")==-1))
  {
    eval ('try {var xObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");if (xObj) result = true; xObj = null; } catch (e) {}');
  }

  return result;
}

function FlashWrite(url,width,height)
{
document.write('<object width=' + width + ' height=' + height + '>');
document.write('<param name="allowfullscreen" value="true" /><param name="wmode" value="opaque" /><param name="allowscriptaccess" value="always" /><param name="bgcolor" value="#f5f5f5" />');
document.write('<param name="movie" value="http://pa.photoshelter.com/swf/CSlideShow.swf?sv=20090929&feedSRC=http%3A//pa.photoshelter.com/c/cavaroc/gallery/Featured-Images/G0000ecobWXKP6xo%3Ffeed%3Drss%26ppg%3D200&f_l=f&f_fscr=t&f_tb=f&f_bb=t&f_bbl=f&f_fss=f&f_2up=t&f_crp=f&f_wm=t&f_s2f=f&f_emb=t&f_cap=t&f_sln=f&ldest=c&imgT=casc&cred=iptc&trans=xfade" />');
document.write('<embed src="' + url + '" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" ');
document.write('width=' + width + ' height=' + height);
document.write(' bgcolor="#f5f5f5" wmode="opaque"></embed></object>');
}
