155a156,176
>      * PHP4 adaptor to call constructor
>      */
>     function HTML_AJAX() 
>     {
>         $this->__construct();
>     }
>     
>     /**
>      * constructor
>      *
>      * Remap callback list from class-name to $this. Even if static function calls are 
>      * ment to work, they caused to hang the script
>      */
>     function __construct() 
>     {
>         foreach( array_keys( $this->_callbacks ) as $key ) {
>             $this->_callbacks[$k][0]    =   $this;
>         }
>     }
>     
>     /**
