var userchanger = new function(){

	this.change = function(gModulo,sTable,sKey,iId,iIdUtente){
		ajax.process("ajax.php?page=private_common_userchanger&modulo="+gModulo+"&table="+sTable+"&key="+sKey+"&id="+iId+"&id_utente="+iIdUtente,"get",null,this.afterchange);
	}
	
	this.afterchange = function (sText){
		//FUNZIONE RICHIAMATA "CON AJAX": NON ESISTE PIU' this
		if (!ajax.parseresponse(sText)){
			document.location.href='?page=common_errore';
		}
	}

}
