function viewPhoto(fileName, width, height)
{
  var settings = 'width=' + width + ', height=' + height + ', location=no, directories=no, menubar=no, toolbar=no, status=no, resizable=yes, dependent=no, copyhistory=no, scrollbars=no';
  newWindow = window.open(fileName, null, settings);
  while (newWindow.document.body == null) { }
    newWindow.document.body.style.margin = "0px";
    newWindow.document.body.style.padding = "0px";
}
