function OpenNewWindow(bigurl, width, height, imagename)
{
    var newWindow = window.open("", "pictureViewer", 
        "location=no, directories=no, fullscreen=no, resizable=yes menubar=no, status=no, toolbar=no, width=" + (width+17) + ", height=" + (height+4) + ", scrollbars=yes");
    newWindow.document.writeln("<html>");
    newWindow.document.writeln("<body style='margin: 0 0 0 0;'>");
    newWindow.document.writeln("<a href='javascript:window.close();'>");
    newWindow.document.writeln("<img border='0' src='" + bigurl + "' alt='" + imagename + ". Click on the image to close it' id='bigImage'/>");
    newWindow.document.writeln("</a>");
    newWindow.document.writeln("</body></html>");
    newWindow.document.close();
}