function popUpPic(imgPath)
{
	var win = window.open('','popImage',"resizable=1,scrollbars=0,HEIGHT=400,WIDTH=250");
	win.document.writeln('<HTML><head><TITLE>A Reklám Kft.</TITLE></head>');
	win.document.writeln('<BODY onLoad="fitPic(\'testpic\')" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">');
	win.document.writeln('<img name="testpic" src="'+imgPath+'" BORDER=0 onClick="self.close()">');
	win.document.writeln('<script>');
	win.document.writeln('function fitPic(objName) {');
	win.document.writeln('var img = document.images[objName]; var left = parseInt((screen.width-img.width)/2);');
	win.document.writeln('var top = parseInt((screen.height-img.height)/2); var W, H; var NS = (navigator.appName=="Netscape")?true:false;');
	win.document.writeln('if (left<0 || top<0) {left = 0;top = 0; W = screen.width;H = screen.height;} else');
	win.document.writeln('{ W = img.width - ((NS) ? window.innerWidth : document.body.clientWidth);  H = img.height - ((NS) ? window.innerHeight : document.body.clientWidth); }');
	win.document.writeln('self.resizeBy(W, H-1); self.moveTo(left, top); self.focus();}');
	win.document.writeln("</script>");
	win.document.writeln('</BODY></HTML>');
	win.document.close();
}
