function AlbumsCore() {
	this.ident ='';
	
	this.albumDel = function(id) {	
		 var data = new Object();	 
		 data['id'] = id;
		 data['action'] = 'delete';
		 data['widget'] = 'albums';

		 this.InitializeRequest('POST', '/ajax.php');
         this.Commit(postquery(data));	
	}
	
	this.OnSuccess = function()
      {
      	//alert(this.GetResponseText());
      	eval(this.GetResponseText());
      	// fade(0,"form_"+this.ident);
      	// $("loading_"+this.ident).style.display = 'none';
      }
}

AlbumsCore.prototype = new ajax();
Albums = new AlbumsCore();
