/* Open Zoom Picture in new Window */
function cZoomPic(cImageName,cWidth,cHeight) {
  var strOptions = "width="+cWidth+",height="+cHeight+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,left=20,top=20";
  window.open('/images/'+cImageName,'cZoomPic', strOptions);
}

