function OpenNewWindow(bigurl, width, height)
{	
    var newWindow = window.open("", "pop", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");
    newWindow.focus ();
    newWindow.resizeTo(width, height);
    newWindow.document.writeln("<html>");
    newWindow.document.writeln("<body style='margins: 0 0 0 0;'>");
    newWindow.document.writeln("<a href='javascript:window.close();'>");
    newWindow.document.writeln("<img src='" + bigurl + "' alt='Click to close' id='bigImage'/>");
    newWindow.document.writeln("</a>");
    newWindow.document.writeln("</body></html>");
    newWindow.document.close();
}


