function NewWindow(bigurl, width, height)
{
    var newWindow = window.open("", "pictureViewer", 
        "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");
    newWindow.document.writeln("<html>");
    newWindow.document.writeln("<head>");
    newWindow.document.writeln("<link rel='stylesheet' href='../../style1.css' type='text/css' media='screen, print' \/>");
    newWindow.document.writeln("<\/head>");
    newWindow.document.writeln("<body style='margin: 25 25 25 25;'>");
    newWindow.document.writeln("<center><a href='javascript:window.close();'><img src='" + bigurl + "' alt='Click to close' border='0' id='bigImage'\/><\/a><\/center>");
//    newWindow.document.writeln("Close this window");
//    newWindow.document.writeln("<a href='javascript:window.close();'>Close this window<\/a>");
    newWindow.document.writeln("<\/body><\/html>");
    newWindow.document.close();
}

