function popGaleri(link){
    var winstr = "";
    winstr+= '<html><head>';
    winstr+= '<title>Þen Deri</title>';
    winstr+= "<"+"SCRIPT>\n";
    winstr+= "function specialInit()\n";
    winstr+= "{\n";
    winstr+= "if (document.all || document.layers)\n";
    winstr+= "window.resizeTo(document.images[0].width+16, document.images[0].height+32);\n";
    winstr+= "}\n";
    winstr+= "</"+"SCRIPT>\n";
    winstr+= "</head>\n";
    winstr+= "<BODY leftmargin=0 topmargin=0 onLoad='specialInit();'>\n";
    winstr+= '<center>';
    winstr+= '<img src=\"'+link+'\">';
    winstr+= '</center>';
    winstr+= '</body>';
    winstr+= '</html>';  
        
    galeriWindow = window.open('', 'Sen', 'width=600,height=390,scrollbars=0,resizable=1');
    galeriWindow.document.open();
    galeriWindow.document.write(winstr);
    galeriWindow.document.close();
}
