            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_DELAY = 300;
                e.T_BGCOLOR='';
                e.T_BGIMG='';
                e.T_BORDERWIDTH=0;
                e.T_BORDERCOLOR='';
                e.T_FONTCOLOR='#333333';
                e.T_FONTFACE='Verdana, Geneva, 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='#ff6666';
                e.T_WIDTH=width;
				//alert(e);
                return e;
				
            }
            function TooltipKeyword(keyword, definition) {
                // In Koo Kim
                // this js object delivers the keyword and definition
                // to the tooltip constructor
                this.keyword=keyword;
                this.definition=definition;
				//alert("TooltipKeyword called for the keyword"+keyword);
            }
            function ConstructTooltip(tooltipKeyObj) {
                // In Koo Kim
                // this method accepts a TooltipKeyword object
				//alert("ConstructTooltip called for the keyword"+tooltipKeyObj.keyword);
                // and constructs the tooltip table as a string
               // var tooltip_body_str_1 = "<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\'><tr valign=\'top\'><td width=\'6\' height=\'6\'><img src=\'\/images\/blue_corner_ul.gif\' width=\'6\' height=\'6\' border=\'0\'><\/td><td class=\'barker_t\'><img src=\'\/images\/shim.gif\' width=\'1\' height=\'6\' border=\'0\'><\/td><td width=\'6\'><img src=\'\/images\/blue_corner_ur.gif\' width=\'6\' height=\'6\' border=\'0\'><\/td><\/tr><tr><td class=\'barker_l\' width=\'6\'><img src=\'\/images\/shim.gif\' width=\'6\' height=\'1\' border=\'0\'><\/td><td bgcolor=\'#FBF7FF\'><table cellpadding=\'3\' cellspacing=\'0\' border=\'0\' width=\'100%\'><tr><td><table cellpadding=\'1\' cellspacing=\'0\' border=\'0\' width=\'100%\'><tr><td class=\'barker_body\' colspan=\'2\'><span class=\'tooltip_highlight\'>";
                //var tooltip_body_str_2 = "<\/span>&nbsp;&nbsp;";
               // var tooltip_body_str_3 = "<\/td><\/tr><tr valign=\'bottom\'><td class=\'barker_foot\' nowrap>For a full list of terms, visit our Glossary<\/td><td width=\'18\'><\/td><\/tr><\/table><\/td><\/tr><\/table><\/td><td class=\'barker_r\'><img src=\'\/images\/shim.gif\' width=\'6\' height=\'1\' border=\'0\'><\/td><\/tr><tr valign=\'top\'><td width=\'6\' height=\'6\'><img src=\'\/images\/blue_corner_ll.gif\' width=\'6\' height=\'6\'><\/td><td class=\'barker_b\'><img src=\'\/images\/shim.gif\' width=\'1\' height=\'6\' border=\'0\'><\/td><td><img src=\'\/images\/blue_corner_lr.gif\' width=\'6\' height=\'6\' border=\'0\'><\/td><\/tr><\/table>";
			    var tooltip_body_str_1 ="<table cellpadding=\'3\' cellspacing=\'2\' border=\'0\'><tr valign=\'top\'><td bgcolor=\'#D4ECFF\' align=\'left\' style=\'border:1px solid #000000\'><span class=\'paraHeading\'>";
				var tooltip_body_str_2 = "<\/span><br><span class=\'contentLevel3\'>";
				var tooltip_body_str_3 = "<\/span><\/td><\/tr><\/table>";
                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;
                }
				//alert(tooltip_buffer);
                return tooltip_buffer;
            }
