function popUp(imgUrl)
	{
	window.open("popup.htm?"+imgUrl,"","resizable=1,HEIGHT=200,WIDTH=200")
	}
function oldOpenNewWindow(bigurl, width, height)
{
    var newWindow = window.open("", "pictureViewer", 
        "'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, width=" + width + ", height=" + height + ", scrollbars=no");
    newWindow.document.writeln("<html>");
    newWindow.document.writeln("<body style='margin: 0 0 0 0;' BGCOLOR='black'>");
    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();
}