function searchinputCore() {
	this.ident='';	
	this.refresh = function(ident) {
		var data = new Object();	
		data['widget']='searchinput';
		data['action'] = 'refresh';
		data['ident'] = ident;
		data['params'] = window.widgetparams[ident];
		
		this.InitializeRequest('POST', '/ajax.php');
        this.Commit(postquery(data));		
	}
	
	
	this.OnSuccess = function() {
      	eval(this.GetResponseText());
    }
	
}
searchinputCore.prototype = new ajax();
searchinput = new searchinputCore();

