function openPreview(src, w, h)
{
  tmpWindow = window.open("", "_popup", "width="+w+",height="+h+",status=no,toolbar=no,menubar=no");
  tmpWindow.document.open();  
  tmpWindow.document.write('<html><head><title>Travel to Ukraine - Photo Gallery</title></head><body style="background:#FFFFFF; margin:0px; padding:0px;"><img src=' + src + ' border="0" /></body></html>');
  tmpWindow.document.close();
}
function openPreview2(src, w, h)
{
  tmpWindow = window.open("", "_popup", "width="+w+",height="+h+",status=no,toolbar=no,menubar=no");
  tmpWindow.document.open();  
  tmpWindow.document.write('<html><head><title>Travel to Ukraine - Photo Gallery</title></head><body style="background:#FFFFFF; margin:0px; padding:0px;"><img src="/image.php?id=' + src + '" border="0" /></body></html>');
  tmpWindow.document.close();
}
function getPos(el)
{
  var r = { x: el.offsetLeft, y: el.offsetTop };
  if (el.offsetParent)
  {
    var tmp = getPos(el.offsetParent);
    r.x += tmp.x;
    r.y += tmp.y;
  }
  return r;
}
var last_i = 0
function submenu(i)
{
  el = document.getElementById('sm_' + i);
  if (el)
  {
    if (last_i == i)
    {
      last_i = 0;
      el.style.display = 'none';
    }
    else
    {
      last_i = i;
      el.style.display = '';
    }
    return false
  }
  else if (last_i)
  {
    el = document.getElementById('sm_' + last_i);
    el.style.display = 'none';
    last_i = 0;
  }
  return true;
}