<!-- show -->
      var show_hide_flag;
      show_hide_flag=false;

      function Hide_Fade(content)
      {
          var fade = new Fx.Style($(content),'opacity',{duration: 600});
          fade.start(1,0.01);
      }

      function Show_Fade(content)
      {
          var fade = new Fx.Style($(content),'opacity',{duration: 600});
          fade.start(0.01,1);
      }

      function ShowHide(content)
      {
        if (show_hide_flag)
        {
          Hide_Fade(content);
        }else
        {
          Show_Fade(content);
        }
        show_hide_flag=!show_hide_flag;
      }