<!--

function getShowImageInPageLink(linkDesc, contentHeader, imageSrc, imageAlt, imageWidth, imageHeight) {
  var retVal = '';

  if (isSet(linkDesc) && isSet(contentHeader) && isSet(imageSrc)) {
    var link = 'showimagepage.shtml?imageSrc=' + escape(imageSrc);

    if (isSet(imageAlt)) {
      link += '&imageAlt=' + escape(imageAlt);
    }

    if (isSet(imageWidth)) {
      link += '&imageWidth=' + escape(imageWidth);
    }

    if (isSet(imageHeight)) {
      link += '&imageHeight=' + escape(imageHeight);
    }

    link += '&contentHeader=' + escape(contentHeader);

    retVal = getLink(link, linkDesc);
  }

  return retVal;
}

//-->

