﻿//-----------------------------------------------------
//onmeretezo popupablak kepeknek
//-----------------------------------------------------
function picwin(img) 
{
	var height = 100;
    popup = window.open('','','toolbar=no,location=no,directories=no,menubar=no,resizable=yes,status=no,scrollbars=auto,width=200,height=100'); 

	var sz = " "
	+ "function getElementStyle(elementId) {"
	+ "	if (document.getElementById)"
	+ "		return document.getElementById(elementId).style;"
	+ "	else if (document.all) "
	+ "		return document.all[elementId].style;"
	+ "	else if (document.layers) "
	+ "		document.layers[elementId];"
	+ "}"
	+ "function updateWindow() { "
	+ "   getElementStyle('wait').display='none';"
	+ "   resizeTo(document.images[0].width+40,document.images[0].height+"+height+");"
	+ "   window.clearInterval(timer);"
	+ "   window.moveTo((window.screen.availWidth - document.images[0].width - 40)/2, (window.screen.availHeight - document.images[0].height - 100)/2);"
	+ "}"
	+ "var timer = null;"
	+ "function checkImage() { "
	+ "    if (document.images.length>0 && (document.images[0].width>0 || document.images[0].height>0)) { "
	+ "        resizeTo(document.images[0].width+40,document.images[0].height+"+height+");"
	+ "        window.clearInterval(timer);"
	+ "    } "
	+ "}"
	+ "timer = window.setInterval(checkImage, 500);";
    
    var strwait = "Pillanat türelmet!";
    var strclose = "Ablak bezárása";
    if( document.location.href.indexOf("/en/") >= 0 )
    {
	    strwait = "Loading image...";
		strclose = "Close window";
    }

	popup.document.write("<HTML><head><script>"+sz+"</script></head>");
	popup.document.write('<BODY>');
	popup.document.write('<div id="wait" name="wait" style="position:absolute;left:10px;top:10px; font-family: Arial, Helvetica, sans-serif; font-weight: bold; color: black; background-color: #eee; padding: 2px;">' + strwait + '</div>');
	popup.document.write('<IMG name=kep id=kep src="'+img+'" style="border: solid 1px black;" border=0 OnClick="self.close()" onLoad="');
	popup.document.write("updateWindow()");
	popup.document.write('">');
	popup.document.write('<p style="text-align:center;margin-top:5px;"><a href="#" onclick="self.close()"');
	popup.document.write(' style="font-family:Arial,Helvetica,Sans-serif;font-size:12px;color:black;">' + strclose + '</a></p>');
	popup.document.write('</BODY></HTML>');
	popup.document.close();
}
