var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

function NewWindowImg(picurl,width,height) {
	window_width = width;
	window_height = height;
	LeftPosition = (screen.width) ? (screen.width - width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height - height)/2 : 0;
	settings = 'height='+window_height+',width='+window_width+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=no';
	win = window.open('','',settings)
	win.document.open('text/html')
	win.document.write('<head><title>Fotók</title></head>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" unselectable="on">');
	win.document.write('<a href="javascript:window.close()" hidefocus><img src="'+picurl+'" width="'+width+'" height="'+height+'" border="0"></a>');
	win.document.writeln('</body>');
	win.document.close();
}

