// Java Document

<script type="text/JavaScript">

var nifty_little_window = null;

function gk(wto) {
document.write('<body background-colour=#E0E0E0>')
if(nifty_little_window == null || nifty_little_window.closed)
	/* if the pointer to the window object in memory does not exist
		 or if such pointer exists but the window has been closed */
	{
		nifty_little_window = window.open("../"+wto, "HighSecurity", 'width=350, height=200, resizable=1');
		/* then create it. The new window will be created and brought to the top */
	}
	else
	{
		nifty_little_window.focus();
		/* else the window reference must exist and the window is not closed; therefore
			 bring it back on top with the focus() method. No need to re-create the window
			 or reload the referenced resource. */
	};
}

</script>