
function kepnagyito(nev,xx,yy, title) {

magassag = yy + 40;
szelesseg = xx + 20;
xpos = (window.screen.width-szelesseg)/2;
ypos = 2;
depth = '../../../';

refkep=window.open('','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width='+szelesseg+',height='+magassag+',left='+xpos+',top='+ypos+',screenx='+xpos+',screeny='+ypos+',resizable=1');

refkep.document.writeln('<html>');
refkep.document.writeln('<head>');
refkep.document.writeln('<title>' + title + '</title>');
refkep.document.writeln('</head>');
refkep.document.writeln('<body leftmargin="0" topmargin="10" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">');
refkep.document.writeln('<center>');
refkep.document.writeln('<img src="img/' + nev + '.jpg" width="' + xx + '" height="' + yy + '">');
refkep.document.writeln('</center>');
refkep.document.writeln('<center>');
refkep.document.writeln('<a href="javascript:close()"><img src="' + depth + 'img/bezar.gif" border="0" onFocus="blur()"></a>');
refkep.document.writeln('</center>');
refkep.document.writeln('</body>');
refkep.document.writeln('</html>');
refkep.document.close();
}


