function showFullPic(sImg) { 
    var ImgWin = window.open("", "newwin", "height=480, width=640, toolbar=no, scrollbars=no, menubar=no");
    ImgWin.document.write("<html>");
    ImgWin.document.write("<title>Full Size Image</title>");
    ImgWin.document.write("<body style='margin: 0; padding: 0;'>");
    ImgWin.document.write("<a href='javascript:window.close();'><img src='" + sImg + "' width='640' height='480' border='0' /></a>");
    ImgWin.document.write("</body>");
    ImgWin.document.write("</html>");
    ImgWin.document.close();
}