      document.write("<STYLE TYPE='text/css'><!--");
      document.write(".ChipHelp { background:#FFFFFF;color:#000000;font-size:12px;font:Osaka; }");
      document.write("--></STYLE>");
      var NC, IE;
      var mouseX = 0;
      var mouseY = 0;

      var chip_width = 200;
      var chip_border = '#000000';

      function init_ChipHelp()
      {
          if (document.layers) {
              NC = 'on';
              captureEvents(Event.MOUSEMOVE);
              onMouseMove = position_ChipHelp;
          } else if (document.all)
              IE = 'on';
      }

      function position_ChipHelp(e)
      {
          mouseY = e.pageY;
          mouseX = e.pageX;
          return true;
      }

      function ChipHelp(id, Tag, align)
      {
          if (NC) {
              document.write("<LAYER ID='ChipHelp" + id + "' VISIBILITY='hide' BGCOLOR='" + chip_border + "'><TABLE WIDTH=" + chip_width + " BORDER=0 CELLSPACING=1 CELLPADDING=1>");
              document.write("<TR><TD ALIGN='" + align + "' CLASS='ChipHelp'>" + Tag + "</TD></TR></TABLE></LAYER>");
          } else if (IE) {
              document.write("<DIV ID='ChipHelp" + id + "' STYLE='position:absolute;visibility:hidden;background:" + chip_border + ";'><TABLE WIDTH=" + chip_width + " BORDER=0 CELLSPACING=1 CELLPADDING=1>");
              document.write("<TR><TD ALIGN='" + align + "' CLASS='ChipHelp'>" + Tag + "</TD></TR></TABLE></DIV>");
          }
      }

      function changer_ChipHelp(id, type,posx,posy)
      {
        if (NC) {
              document.layers['ChipHelp' + id].y = mouseY + 10 + posy;
              document.layers['ChipHelp' + id].x = mouseX + 10 + posx;
              document.layers['ChipHelp' + id].visibility = type;
          } else if (IE) {
              document.all['ChipHelp' + id].style.pixelTop  = event.y + document.body.scrollTop + 10 + posy;
              document.all['ChipHelp' + id].style.pixelLeft = event.x + document.body.scrollLeft + 10 + posx;
              document.all['ChipHelp' + id].style.visibility = type;
          }
     }
 	
	function popUp(sLink,sFeature)
	{
		if(sFeature!="")
			window.open(sLink,"PopupWindow",sFeature);
		else
			window.open(sLink,"PopupWindow","menubar=yes,width=400,height=300,resizable=yes");
	}


  //-->

