var PGL_imgwnd;
var PGL_title;
/* Gallery main window function */
function PGL_ShowImg( ImageName )
{
  PGL_imgwnd = window.open("", "photoview", 
                   "resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes");
  PGL_imgwnd.document.location.href = "/phview.htm?" + ImageName;
/*  PGL_title = document.title + " :: " + ImageName;
  setTimeout("PGL_imgwnd.document.title = PGL_title;", 0);*/
}

