Event.observe(window,'load',function(){
   Event.observe($('habastu-form'),'submit',function(e){
      Event.stop(e);

      var input =$F('input')
      new Ajax.Updater($('habastu'),
		       './habastu.cgi',
		       {method:'POST',
		       parameters:{'input':input}});
   });
});