function nagykep_regi(kepsrc,w,h)
{
   var s1="bgcolor=#000000,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+w+",height="+h;
   var nyit = window.open(kepsrc,"nagykep",s1);
   nyit.moveTo(Math.abs((screen.availWidth-w)/2),Math.abs((screen.availHeight-h)/2));
   nyit.focus();
}


function wcenter(sizex,sizey) {
	if(sizex<0) sizex=screen.width-10+sizex;
	if(sizey<0) sizey=screen.height-55+sizey;
	x=Math.round((screen.width-10-sizex)/2);
	y=Math.round((screen.height-55-sizey)/2);
	s="width="+sizex+",height="+sizey+",left="+x+",top="+y+",";
	return s;
}

function wopen(sx,sy,url,extra) {
	if(!extra) extra="";
	if(!url) {url="about:blank";}
	extra=extra.replace(/sb/,"scrollbars=yes");
	extra=extra.replace(/rs/,"resizable=yes");
	extra=extra.replace(/mb/,"menubar=yes");
	return window.open(url,"",wcenter(sx,sy)+extra);
}

function nagykep(src,w,h) { // dk remix
	xonload=""; if(0) xonload="window.moveTo(Math.round((screen.width-this.width-16)/2),Math.round((screen.height-this.height-16)/2));window.resizeTo(this.width+16,this.height+16)";
	size_it=""; if(1) size_it=" width="+w+" height="+h+" ";
	htm="";
	htm+="<title>Normál méret</title><body style='margin:0px;padding:0px' bgcolor=black onkeypress='if(event.keyCode==27)window.close()'><table width=100% height=100% cellspacing=0 cellpadding=0 border=0><td align=center><img "+size_it+" src='"+src+"' onclick='window.close()' onload='"+xonload+"'></table></body>";
	w=wopen(w,h,"","rs");
	w.document.open();
	w.document.writeln(htm);
	w.document.close();
}
