function openHelp(URL, height, width) {
	if (self.name != "main") { self.name = "EVERWELL"; }
	var args = openHelp.arguments
	var moveTop = "50";
	var moveLeft = "50";
	var scroll = "yes";
	
	// If x/y coords were passed, use them instead of the default.
	if (args[3]) { moveTop = args[3];}
	if (args[4]) { moveLeft = args[4];}
	if (args[5]) { scroll = args[5];}
	
	helpwin = window.open(URL,"helpWin","top="+moveTop+",left="+moveLeft+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scroll+",resizable=no,width="+width+",height="+height+"");
	helpwin.focus();
}