//information window
//David N. Blauch		April 2003, May 2008

function infoWindow(winText,winWidth,winHeight)
{
	var win = open("about:blank","Info",
		"resizable=no,location=no,toolbar=no,scrollbars=no,top=100,left=200,width="+winWidth+",height="+winHeight);
	win.document.open();
	win.document.write("<HTML>\n<HEAD>\n<TITLE>\n Information </TITLE>\n</HEAD>\n<BODY>\n");
	win.document.write(winText);
	win.document.write(
		"<br><form><center><input type='button' value='&nbsp; &nbsp; OK &nbsp; &nbsp;' onClick='window.close()'> </center></form><br>");
	win.document.write("</BODY>\n</HTML>\n");
	win.document.close();	
	win.focus();

	return win;
}
