
var newWindow;

function displayImage(imageName)
{
	if(!newWindow || newWindow.closed)
	{
		newWindow = window.open("", "", "height=480, width=640,resizable=yes");
		
		var newContent = "<HTML><HEAD><TITLE>Diablo Forge</TITLE></HEAD>"
			newContent += "<BODY leftmargin=0 topmargin=0><table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='center' valign='middle'><img src=hires/" + imageName + "></td></tr></table>"
			newContent += "</BODY></HTML>"
			newWindow.document.write(newContent);
			newWindow.document.close();
	}
	else
	{
		var newContent = "<HTML><HEAD><TITLE>Diablo Forge</TITLE></HEAD>"
			newContent += "<BODY><img src=hires/" + imageName + ">"
			newContent += "</BODY></HTML>"
			
			newWindow.document.write(newContent);
			newWindow.document.close();
			
			newWindow.focus();
	}
}