
/** Java Script Function to load a help window
  * <br>HTML eg:
  * <br><code><form>
  * <br><INPUT TYPE='button' VALUE='Help h' 
  *		 onClick='helpWindow("TTur03h1")'>
  * <br></FORM></code>
  * <p>servlet eg:
  * <br><code>h.help("TTur03h1");
  * <br>h.help("TTapph1", "report");
  * </code>
  */

function helpWindow(html) 
{
	var TTurl = "help/"		+ 
				html					+ 
				".html";
//alert(TTurl);
	msgWindow=window.open( 
		TTurl, 
		"", 
		"toolbar=no,scrollbars=yes," + 
		"width=650,height=400," + 
		"screenX=10,screenY=5,resizable=yes,dependent=yes") 
}
