var mywin,hugeimg,i,j;

function p2() {
  if (hugeimg.complete || (j>100) ) {
    mywin.window.resizeTo(hugeimg.width,hugeimg.height);
    mywin.window.moveTo( (screen.width-hugeimg.width) / 2, (screen.height-hugeimg.height) / 2) ;
	clearInterval(i) ;
  }
}

function popap(x) {
  img = document.images[x] ;
  mywin = window.open( '../html/downprog.html', 'hevestourkep', 'menubar=no,location=no,scrollbars=no,status=no,titlebar=no,toolbar=no,left=100,top=100, width=640 height=450') ;
  mywin.focus() ;
  mywin.document.write("<title>HevesTour</title><body bgcolor=\"#376A1B\" style='margin-left:0;margin-top:0'><img name='kep' onClick='javascript:window.close()'>");
  hugeimg = mywin.document.images['kep'] ;
  hugeimg.src= x ;
  // '../favat/borturizmus/'+x+'.jpg'  ;
  i=setInterval('p2()',500);
  j=0 ;
}

function popup(kep,scroll)
    {
      if (scroll==null) {scroll='no';}
      page='/favat/popup.php?kepfile='+kep+'&scroll='+scroll;
      w = 1;
      h = 1;
      l = 0;
      t = 0;
      settings = 'scrollbars=' + scroll + ',resizable=no,status=no,menubar=yes,width=' + w + ',height=' + h + ',left='
                 + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t;
      win = window.open(page, 'kiadvanyok', settings);
      win.focus(); 
    }
