<!--

function openHelp(vRoot, section) {

	var popW = 400;
	var popH = 200;
	var winleft = 50;	//(screen.width - popW) / 2;
	var winUp = 50;		//(screen.height - popH) / 2;
	var strURL = vRoot + "help/help.html#" + section;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars,resizable,toolbar=no,location=no,directories=no,status=no,menubar=no';
	help_window = window.open(strURL,'help_window',winProp);
	help_window.focus(); 
}

//-->

