//-------------------------------------------------
// Ke'p megjelenito" fuggveny   created by: Chaacky
//-------------------------------------------------
function popitup(imgSRC)		//maga a fuggveny, parameterkent kapja a kep eleresi utjat
   {
	img= new Image();		//kep letrehozasa
	img.src = imgSRC;		//azert fontos elolre beolvasni, h az ablak letrehozasakor ki
					//tudjuk olvasni a meretet
	newWindow=open("","image","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,screenX=100,screenY=100,dependent=yes,resizable=no,hotkeys=no,width="+img.innerWidth+",height="+img.outerHeight);
	newWindow.document.open();	//az ablak megnyitasa irasra
	newWindow.document.write("<html>\n");
	newWindow.document.write("  <head>\n");
	newWindow.document.write("    <title>Idylle-ungarn</title>\n");
	newWindow.document.write("    <style type='text/css'>\n");
	newWindow.document.write("     <!--\n");
	newWindow.document.write("	body {\n");
	newWindow.document.write("	  margin-left: 0px;\n");
	newWindow.document.write("	  margin-top: 0px;\n");
	newWindow.document.write("	  margin-right: 0px;\n");
	newWindow.document.write("	  margin-bottom: 0px;\n");
	newWindow.document.write("	}\n");
	newWindow.document.write("     -->\n");
	newWindow.document.write("    </style>\n");
	newWindow.document.write("  </head>\n");
	newWindow.document.write("  <body bgcolor=#555555>\n");
	newWindow.document.write("    <center>\n");
	newWindow.document.write("      <img src='"+img.src+"' border=0 width=100% height=100% onClick='javascript:self.close();'\n");	//self.close() fv bezarja az ablakot
	newWindow.document.write("    </center>\n");
	newWindow.document.write("  </body>\n");
	newWindow.document.write("</html>");
        newWindow.resizeBy(img.width-newWindow.document.body.clientWidth,
         img.height-newWindow.document.body.clientHeight); //ablak meretenek korrigalasa ha az rossz
        newWindow.focus();		//focus rahejezese az uj ablakra
        newWindow.document.close();	
   }

//-------------------------------------------------
// Chaacky  2006-01-23
//-------------------------------------------------

