var wnd = null;

function openWindow(url, left, top, width, height, res, scrl, menu)
{
  if (wnd && !wnd.closed) wnd.close();
  wnd = window.open(url, "wnd_foto",
    "left=" + left +
    ", top=" + top +
    ", width=" + width +
    ", height=" + height +
    ", resizable=" + res +
    ", scrollbars=" + scrl +
    ", menubar=" + menu);
  
  wnd.focus();
}


function openTable(url)
{
  openWindow(url, 0, 0, 1000, 600, "yes", "yes", "no");
}
