var win = null;

function NewWindow( url , name, 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=no'
	win = window.open( url, name, settings)
}

function NewWindowImg( picurl, width, height) {
	LeftPosition = (screen.width) ? (screen.width - width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height - height)/2 : 0;
	settings = 'height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable=no';
	win = window.open('','',settings)
	win.document.open('text/html')
	win.document.write('<title>Szentesi Vármegyeháza</title>');
	win.document.write('<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	win.document.write('<a href="javascript:window.close()"><img src="'+picurl+'" width="'+width+'" height="'+height+'" border="0"></a>');
	win.document.writeln('</body>');
	win.document.close();
}
