<!--
function photo_viewer(link, width, height)
   {
   var scrollbars=0;
   height = +height+ 25;
   if(height > 670)
      {
      width = +width+ 17;
      height=670;
      scrollbars=1;
      }
   var photoWindow = window.open(link,"photo",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable=0,width='+width+',height='+height);
   }
//-->
