


/** 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>
  */

//alert('help ..2');

var TT_win = null;
function helpWindow(html) 
{
	var TTurl = "help/"		+ 
				html					+ 
				".html";
//alert(TTurl);
	var w 				= 750;
	var h 				= 400;
	var LeftPosition	= 0;
	var TopPosition		= 20;
	var scroll			= "yes"
	settings='width=' + w + 
			',height=' + h +
			',top=' + TopPosition + 
			',left=' + LeftPosition + 
			',scrollbars=' + scroll + 
			',location=no,directories=no,status=0,menubar=no,toolbar=no,resizable=no';
	TT_win = window.open(TTurl, "", settings);
//	msgWindow=window.open( 
//		TTurl, 
//		"", 
//		"toolbar=no,scrollbars=yes," + 
//		"width=650,height=400," + 
//		"screenX=10,screenY=5,resizable=yes,dependent=yes") 
}




function TT_NewWindow(html) 
{
//	var TTurl = "help/"		+ 
//				html					+ 
//				".html";
	var TTurl = html;
//alert(TTurl);
	msgWindow=window.open( 
		TTurl, 
		"", 
		"toolbar=no,scrollbars=yes," + 
		"width=650,height=400," + 
		"screenX=10,screenY=5,resizable=yes,dependent=yes") 
}

