   function addzero( value )
   {
      while( value.length<2 ) value = String("0") + value;
      return value;
   }
