function openWin(url,w,h,resize) {
	var wint = (screen.height-h)/2;
	var winl = (screen.width-w)/2; 
	var win = window.open(url,'_blank','width=' + w + ',height=' + h + ',resizable=' + resize + ',scrollbars=1,menubar=0,status=1,top=' + wint + ',left=' + winl);
}

function nagyitas(pic,w,h) {
    var wint = (screen.height-h)/2;
    var winl = (screen.width-w)/2;
    bigpic=open('','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width='+w+',height='+h+',top='+wint+',left='+winl+'')
    bigpic.document.writeln('<html>');
    bigpic.document.writeln('<head><title>Lakom</title></head>');
    bigpic.document.writeln('<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor="#FFFFFF">');
    bigpic.document.writeln('<a href="javascript:self.close()"><img src='+pic+' border=0" alt="bezár"></a>');
    bigpic.document.writeln('</body>');
    bigpic.document.writeln('</html>');
}

function enlargeImage(img,w,h,print) {
	if (print == 1) {
		h = h+20;
	}
	var wint = (screen.height-h)/2;
	var winl = (screen.width-w)/2;
	var win  = window.open('/enlarge.php?img=' +img+ '&print=' +print+ '','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width='+w+',height='+h+',top='+wint+',left='+winl+'')
}
