function getOffsetLeft (el) {
  var ol = el.offsetLeft;
  while ((el = el.offsetParent) != null)
    ol += el.offsetLeft;
  return ol;
}
function getOffsetTop (el) {
  var ot = el.offsetTop;
  while((el = el.offsetParent) != null)
   ot += el.offsetTop;
  return ot;
}

function PopIt (picurl)
{
  var s1 = "<html><head><title>MovieStore.hu</title><style type='text/css'>body { margin:0px; background-color:#ffffff; }</style></head><body>"
  +"<table border='0' cellspacing='0' cellpadding='0' width='100%' height='100%'><tr><td align='center' valign='middle'>"
  +"<img src='"+picurl+"' border='0'>"
  +"</td></tr></table>"
  +"</body></html>";
  popup = window.open("","kep","width=550,height=550,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no");
  popup.document.write(s1);
  popup.document.close();
  popup.focus();
}

