reloadModule = function(module,value,pars,newValue){  
		var newValue = newValue || value  
		$$('[mdl='+module+']').each(function(node){ 
			if(node.readAttribute('value')==value || value == '*'){
				var aars = pars || node.readAttribute('vars')
				$(node).cleanWhitespace(); 
				var ajaxupdater = new Ajax.Updater($(node).writeAttribute({value: newValue}), HTTPBASE()+'/reloadModule.php', {
					postBody: aars + "&module=" + module  ,
					method: 'post',  
					evalScripts: true,
					requestHeaders: ['Content-type', 'application/x-www-form-urlencoded','charset','UTF-8']
				}); 
			}
		})
	}
closeModule = function(module,value,pars,newValue){
		var newValue = newValue || value
		$$('[mdl='+module+']').each(function(node){
			if(node.getAttribute('value')==value){
				aars = pars || node.getAttribute('vars')
				try{$(node).close()}catch(e){$(node).remove()}
			}
		})
	}
newValueModule = function(){
	var aa = new Date();
	newValue = 'moduleValue_'+aa.getTime();
	return newValue;
	}
