function TooltipConfig(e, width, xOffset, yOffset, above) {
				//alert("TooltipConfig called");
                // In Koo Kim
                // the following configures the wz_tooltip
                /*if (xOffset && xOffset != null) {
                    e.T_OFFSETX=xOffset;
                } else {
                    e.T_OFFSETX=10;
                    e.T_OFFSETY=10;
                }
                if (yOffset && yOffset != null) {
                    e.T_OFFSETY=yOffset;
                } else {
                    e.T_OFFSETY=10;
                }
                if (above && above != null) {
                    e.T_ABOVE=above;
                }
                */
                
                e.T_OFFSETY=40;
                e.T_ABOVE=true;
                e.T_DELAY = 1;
                e.T_BGCOLOR='ffffff';
                e.T_BGIMG='';
                e.T_BORDERWIDTH=0;
                e.T_BORDERCOLOR='';
                e.T_FONTCOLOR='#333333';
                e.T_FONTFACE='Arial, Helvetica, sans-serif';
                e.T_FONTSIZE='12px';
                e.T_OPACITY=100;
                e.T_PADDING=0;
                e.T_STATIC=true;
                e.T_TEXTALIGN='right';
                e.T_TITLE='';
                e.T_TITLECOLOR='#fff';
                e.T_WIDTH=300;
				//alert(e);
                return e;
				
            }
            function TooltipKeyword(keyword, definition) {
                this.keyword=keyword;
                this.definition=definition;
            }
//Lines 74 thru 76 can be customized
            function ConstructTooltip(tooltipKeyObj) {
			    var tooltip_body_str_1 ="<div id=\'definition\'><div class=\'definition_header\'>";
				var tooltip_body_str_2 = "<\/div><div class=\'definition_body\'>";
				var tooltip_body_str_3 = "<\/div><\/div>";
                var tooltip_buffer;
                if (tooltipKeyObj.keyword != '') {
                    tooltip_buffer = tooltip_body_str_1+ tooltipKeyObj.keyword  + tooltip_body_str_2 + tooltipKeyObj.definition + tooltip_body_str_3  ;
                } else {
                    tooltip_buffer = tooltip_body_str_1 + tooltipKeyObj.definition + tooltip_body_str_3;
                }
                return tooltip_buffer;
            }
