
	function openIt(where, what, how)
{
	window.open(where, what, how);
}
		function DW(dwURL) {

  		popupWin = window.open(dwURL, 'DW', 'scrollbars,resizable=yes,width=517,height=400,left=25,top=25');

  		window.top.name = 'opener';

		}
		
		function DWlarge(dwURL) {

  		popupWin = window.open(dwURL, 'DWlarge', 'scrollbars,resizable=yes,width=650,height=500,left=25,top=25');

  		window.top.name = 'opener';

		}
		
		function DWlarger(dwURL) {

  		popupWin = window.open(dwURL, 'DWlarger', 'scrollbars,resizable=yes,width=825,height=575,left=25,top=25');

  		window.top.name = 'opener';

		}


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 = 200;
                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='left';
                e.T_TITLE='';
                e.T_TITLECOLOR='#ff6666';
                e.T_WIDTH=width;
				//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=\'glossary\'><div id=\'glossary_pop_top\'><\/div><div id=\'glossary_pop_mid\'><span class=\'header\'>";
				var tooltip_body_str_2 = "<\/span><br \/>";
				var tooltip_body_str_3 = "<\/div><div id=\'glossary_pop_bot\'><\/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;
            }
