	function popUpImageKill()
	{
		if (typeof(subwin)=='undefined')
			return;
		if (typeof(subwin.closed)=='undefined')
			return;
		if (subwin.closed==true)
			return;
		subwin.close();
	}

	function popUpImage(element,width,height,basedir)
	{
		popUpImageKill();
		
		href = element.href;
		if (element.getElementsByTagName('img').length > 0)
		{
			// obrazky
			title = element.getElementsByTagName('img')[0].alt;
		} else
		{
			// odkazy
			title = element.textContent;
		}

		width=700;
		height=550;
		
		swleft = Math.round((self.screen.width - width)/2);

    	swtop  = Math.round((self.screen.height - height)/3);
	subwin=window.open("","","height="+height+",width="+width+", left = "+swleft+", top = "+swtop+", toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no");
     	subwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml">');
     	subwin.document.write('<head><title>Hortobágyi Kht.</title><style type="text/css">BODY{margin:0;padding:0;background: #F4EBC4 no-repeat center;} .FotoKeret {BORDER-TOP: #443308 1px solid; PADDING-TOP: 20px; BORDER-RIGHT: #443308 1px solid; PADDING-RIGHT: 20px; BORDER-BOTTOM: #443308 1px solid; PADDING-BOTTOM: 20px; BORDER-LEFT: #443308 1px solid; PADDING-LEFT: 20px;BACKGROUND-COLOR: #FFFFFF;}</style></head>\n');
     	subwin.document.write('<body><table width="100%" height="550" border="0" cellpadding="0" cellspacing="0"><tr><td width="100%" height="100%" align="center" valign="middle"><table width="660" height="490" cellspacing="0" cellpadding="0" border="0"><tr><td width="660" height="490" align="center" valign="middle"><a onclick="window.close();"><img class="FotoKeret" src="'+href+'"/></p></td></tr></table></td></tr></table></body>\n');
     	subwin.document.write('</html>');
     	subwin.document.close();

		subwin.focus();
	}