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);
}


function openFoto(foto, lng)
{
  openWindow("photo.php?foto=" + foto + "&lng=" + lng, 0, 0, 1000, 760, "yes", "yes", "no");
}


function openMailOrder(lng)
{
  height = screen.availHeight - 200;
  if (height > 1000) height = 1000;

  openWindow("page.php?page=main/ordering/mailorder&lng=" + lng, 0, 0, 750, height, "yes", "yes", "no");
}


function openPriceList(lng)
{
  height = screen.availHeight - 200;
  if (height > 1000) height = 1000;

  openWindow("page.php?page=main/pricelist/pricelist&style=print&lng=" + lng, 0, 0, 750, height, "yes", "yes", "no");
}

