function LoadPage(action) {

var DeleteUrl = '';

new Ajax.Updater(
    {
    success: 'dhtml-main',
    failure: 'Klaida'
    },
    '/'+DeleteUrl+'rpc.php',
    {
      method:'get',
      parameters: action,
      asynchronous: true,
      evalScripts: true
      }
    );


Ajax.Responders.register({
  onLoading: function(){
      $('ajax-loading').style.display = "block";
  },

  onComplete: function(){
      $('ajax-loading').style.display = "none";
  }
});

}


