function OpenNewWindow(bigurl, width, height)
{
	var newoptions = "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no";
	if (height > 600) {
		height = 600;
		width += 20;
		newoptions += ", width=" + width + ", height=" + height + ", scrollbars=yes";
	} else {
		newoptions += ", width=" + width + ", height=" + height + ", scrollbars=no";
	}
    var newWindow = window.open("", "", newoptions);
    newWindow.document.writeln("<html>");
    newWindow.document.writeln("<head><title>Image</title></head>");
    newWindow.document.writeln("<body style='margin: 0 0 0 0;'>");
    newWindow.document.writeln("<a href='javascript:window.close();'>");
    newWindow.document.writeln("<img src='" + bigurl + "' alt='Click to close' id='bigImage' border='0' />");
    newWindow.document.writeln("</a>");
    newWindow.document.writeln("</body></html>");
    newWindow.document.close();
}
