// Open Window to show pictures

var pic_win = null;

function openPicWindow(url,picwidth,picheight) {
picwidth=eval(parseInt(picwidth)+30);
picheight=eval(parseInt(picheight)+70);
if (pic_win && (!pic_win.closed))
   {
   pic_win.resizeTo (picwidth,picheight);
   }
else
   {
   pic_win = window.open("", "picwindow","toolbar=0,location=0,width=" + picwidth + ",height=" + picheight + ",scrollbars=0,resizable=1,screenX=0,screenY=0");
   }
pic_win.document.open("text/html");
pic_win.document.bgColor = "000000"; ;
pic_win.document.fgColor = "ffffff";
pic_win.document.write("Click to close<br>");
pic_win.document.write("<a href=\"javaScript:self.close()\">");
pic_win.document.write("<image src=\".\/" + url + "\" border=\"0\">");
pic_win.document.write("</a>");
pic_win.document.close();
pic_win.focus();
}
