	function show_tooltip_up(text) {
	    if(show_tooltip_up.arguments[1]) {
	        table_width = show_tooltip_up.arguments[1];
	    }else{
	        table_width = '200';
	    }
	    if(show_tooltip_up.arguments[2]) {
	        ioffsetx = show_tooltip_up.arguments[2];
	    }else{
	        ioffsetx = 0;
	    }
	    html ="<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\""+table_width+"\">"+
	            "<tr>"+
	              "<td background=\"images/balloon_tooltip/up/balloon_r1_c1.gif\" height=\"1\"><img src=\"images/balloon_tooltip/up/balloon_r1_c1.gif\" width=\"33\" height=\"1\" border=\"0\" alt=\"\" /></td>"+
	            "</tr>"+
	            "<tr>"+
	              "<td height=\"1\">"+
	                  "<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">"+
	                  "<tr>"+
	                      "<td background=\"images/balloon_tooltip/up/balloon_r2_c1.gif\" width=\"1\"><img src=\"images/balloon_tooltip/up/balloon_r2_c1.gif\" width=\"1\" height=\"21\" border=\"0\" alt=\"\" /></td>"+
	                      "<td bgcolor=\"#ffffff\"><div id=\"bubble_tooltip_content\" style=\"color:#000000\" align=\"center\">"+
						  "<table><tr><td align=\"center\" valign=\"top\" style=\"color:#000000\">"+text+"</td></tr></table></div></td>"+
	                      "<td background=\"images/balloon_tooltip/up/balloon_r2_c4.gif\" width=\"1\"><img src=\"images/balloon_tooltip/up/balloon_r2_c4.gif\" width=\"1\" height=\"21\" border=\"0\" alt=\"\" /></td>"+
	                  "</tr>"+
	                  "</table>"+
	              "</td>"+
	            "</tr>"+
	            "<tr>"+
	              "<td>"+
	                  "<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">"+
	                    "<tr>"+
	                      "<td background=\"images/balloon_tooltip/up/balloon_r3_c1.gif\" height=\"13\"><img src=\"images/balloon_tooltip/up/balloon_r3_c1.gif\" width=\"21\" height=\"13\" border=\"0\" alt=\"\" /></td>"+
	                      "<td width=\"12\" height=\"13\"><img src=\"images/balloon_tooltip/up/balloon_r3_c3.gif\" width=\"12\" height=\"13\" border=\"0\" alt=\"\" /></td>"+
	                    "</tr>"+
	                "</table>"+
	                "</td>"+
	            "</tr>"+
	            "</table>";
	      return overlib(html ,AUTOSTATUS,RIGHT,ABOVE ,OFFSETX, - (table_width) + ioffsetx ,OFFSETY,5);
  }


	function show_tooltip_down(text) {
	    if(show_tooltip_down.arguments[1]) {
	        table_width = show_tooltip_down.arguments[1];
	    }else{
	        table_width = '170';
	    }
	    if(show_tooltip_down.arguments[2]) {
	        ioffsetx = show_tooltip_down.arguments[2];
	    }else{
	        ioffsetx = 0;
	    }
	    html ="<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\""+table_width+"\">"+
	            "<tr>"+
	              "<td>"+
	                  "<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">"+
	                    "<tr>"+
	                      "<td background=\"images/balloon_tooltip/down/balloon_r3_c1.gif\" height=\"13\"><img src=\"images/balloon_tooltip/down/balloon_r3_c1.gif\" width=\"121\" height=\"13\" border=\"0\" alt=\"\" /></td>"+
	                      "<td width=\"12\" height=\"13\"><img src=\"images/balloon_tooltip/down/balloon_r3_c3.gif\" width=\"12\" height=\"13\" border=\"0\" alt=\"\" /></td>"+
	                    "</tr>"+
	                "</table>"+
	                "</td>"+
	            "</tr>"+
	            "<tr>"+
	              "<td height=\"1\">"+
	                  "<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">"+
	                  "<tr>"+
	                      "<td background=\"images/balloon_tooltip/down/balloon_r2_c1.gif\" width=\"1\"><img src=\"images/balloon_tooltip/down/balloon_r2_c1.gif\" width=\"1\" height=\"21\" border=\"0\" alt=\"\" /></td>"+
	                      "<td bgcolor=\"#ffffff\"><div id=\"bubble_tooltip_content\" style=\"color:#000000\">"+
						  "<table><tr><td align=\"center\" valign=\"top\" style=\"color:#000000\">"+text+"</td></tr></table></div></td>"+
	                      "<td background=\"images/balloon_tooltip/down/balloon_r2_c4.gif\" width=\"1\"><img src=\"images/balloon_tooltip/down/balloon_r2_c4.gif\" width=\"1\" height=\"21\" border=\"0\" alt=\"\" /></td>"+
	                  "</tr>"+
	                  "</table>"+
	              "</td>"+
	            "</tr>"+
	            "<tr>"+
	              "<td background=\"images/balloon_tooltip/down/balloon_r1_c1.gif\" height=\"1\"><img src=\"images/balloon_tooltip/down/balloon_r1_c1.gif\" width=\"133\" height=\"1\" border=\"0\" alt=\"\" /></td>"+
	            "</tr>"+
	            "</table>";
	      return overlib(html ,AUTOSTATUS,RIGHT,BELOW ,OFFSETX, - (table_width)+ ioffsetx ,OFFSETY,5);
  }
