//-----------------------------------------------------
//onmeretezo popupablak kepeknek
//-----------------------------------------------------
    function picwin(img) 
    {
    	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+60);"
    + "   window.clearInterval(timer);"
    + "}"
    + "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+60);"
    + "        window.clearInterval(timer);"
    + "    } "
    + "}"
    + "timer = window.setInterval(checkImage, 500);";
    
    
    
    
    	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;">Kis türelmet...</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('"></BODY></HTML>');
    	popup.document.close();
    }
