function openImgWindow(url, width, height, alt, posLeft, posTop) {
  newWindow = window.open(url,"newWindow","width="+width+",height="+height+",left="+posLeft+",top="+posTop);
  newWindow.document.open();
  newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
  newWindow.document.write('<img src='+url+' width='+width+' height='+height+' alt='+alt+'>'); 
  newWindow.document.write('</body></html>');
  newWindow.document.close();
  newWindow.focus();
}

function hirkepnyit(kepnev, width, height) {
  url = 'pics/_' + kepnev;
  newWindow = window.open("blank.html","newWindow","width="+width+",height="+height+",left=50,top=50");
  newWindow.document.open();
  newWindow.document.write('<html><title>Hírek</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
  newWindow.document.write('<img src='+url+' width='+width+' height='+height+' alt="Hírek">');
  newWindow.document.write('</body></html>');
  newWindow.document.close();
  newWindow.focus();
}

function hirkepnyit2(kepnev, width, height) {
  url = 'http://www.dunakanyar.hu/images/hirek/' + kepnev;
  newWindow = window.open("blank.html","newWindow","width="+width+",height="+height+",left=50,top=50");
  newWindow.document.open();
  newWindow.document.write('<html><title>Hírek</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
  newWindow.document.write('<img src='+url+' width='+width+' height='+height+' alt="Hírek">');
  newWindow.document.write('</body></html>');
  newWindow.document.close();
  newWindow.focus();
}


function progkepnyit(kepnev, width, height) {
  url = 'pics/' + kepnev;
  newWindow = window.open("blank.html","newWindow","width="+width+",height="+height+",left=50,top=50");
  newWindow.document.open();
  newWindow.document.write('<html><title>Programok</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
  newWindow.document.write('<img src='+url+' width='+width+' height='+height+' alt="Hírek">');
  newWindow.document.write('</body></html>');
  newWindow.document.close();
  newWindow.focus();
}

function openWindow(url, width, height, alt, posLeft, posTop) {
	newWindow = window.open(url,"newWindow","width="+width+",height="+height+",left="+posLeft+",top="+posTop);
    newWindow.opener = self;
//	newWindow.document.open();
//	newWindow.document.close();
	newWindow.focus();
}
