window.topic=null;
function openHelp(helpTopic) {
	t = "/mori/Help.do?topic=" + helpTopic;
	helpWindow = open(t,"help","resizable=no,width=600,height=400");
	helpWindow.focus();
	if (helpWindow.opener==null) {
		helpWindow.opener=self;
	}
}

