function photo_open(link, width, height)
{
  var photoWindow;

  photoWindow = window.open(link,"viewer",'toolbar=0,location=0,directories=0,status,menubar=0,scrollbars=0,resizable=0,left=0,top=0,width='+width+',height='+height);
  photoWindow.resizeTo(width,height);
  photoWindow.focus();
}