
/*
 * Creates a picture window for browsing through pictures.
 */
function openPhotoWindow(url)
{
  var photoWin = open(url, "PhotoViewer", "alwaysRaised, resizable=yes, width=550, height=500, toolbar=no, scrollbars");
  photoWin.focus();
}
