function OpenUserGuide(strTopic)
{
	window.open("http://www.tridentlist.com/help/userguide.aspx?Topic=" + 
		strTopic, "TLUserGuideWnd", "height=500, width=527, location=no, menubar=no, resizable=no, " +
		"scrollbars=yes, status=no");
		
	if(navigator.userAgent.indexOf("MSIE") != -1)
		window.event.returnValue = false;
			
	return false; 
}