var newWindow = null;
var openWin = 0;
function loadpic(src){
                // Set background color for pop up window here
                var bgColour = "#F9FE9A";
                                // ---------------------------------------------------------------
                if(openWin==1){
                        if (!newWindow.closed){newWindow.close();};
                        openWin=0;
                        }
                newWindow=window.open("","WinName","scrollbars=yes,noresize,margin=0,height=750,width=700,topmargin=0,leftmargin=0,top=0,left=0");
                openWin =1;
                self.newWindow.document.write("<html><head><title>Sewn By B.B. - Image: " + src + "</title></head>");
                self.newWindow.document.write("<style><!-- a:hover{color:grey;}--></style>");
                self.newWindow.document.write("<body bgColor='");
                self.newWindow.document.write(bgColour);
                self.newWindow.document.write("'><div align=center>");
                self.newWindow.document.write('<table height=90%><tr><td><img src="'+  src + '" border=0></td></tr></table>');
                self.newWindow.document.write('<form><input type="button" Value="Schliessen" onclick="javascript: self.close()"></form>');
                self.newWindow.document.write('</div></body></html>');
                self.newWindow.focus();
}
