﻿	var newWindow;
	function showNewWindow(html)
	{
		if (!newWindow || newWindow.closed)
		{
			h = screen.height - 70;
			w = screen.width - 10;
			windowParms = "height=" + h + ",width=" + w + ",location=no,toolbar=no,resizable=yes,menubar=no,titlebar=no,scrollbars=yes,left=0,top=0,x=0,y=0";
			newWindow = window.open("VirtualPage.html","PICWIN",windowParms);
		}
		else
		{
			newWindow.document.close();
			newWindow.document.open();
		}
		newWindow.document.write(html);
		newWindow.focus();
	}

	function showPicture(jpeg)
	{
		showNewWindow("<HTML><HEAD><TITLE>The Big Picture</TITLE></HEAD><body bgcolor='#003333'><p align='center'><INPUT type='button' value='Close Window' onClick='window.close()'/></p><p align='center'><img src='" + jpeg + "'/></p><p align='center'><INPUT type='button' value='Close Window' onClick='window.close()'/></p></body></HTML>");
	}
