grazie risolto.


var CountHistory, History1


CountHistory =0;
var History1 = { "HS" : ""};


function History(){

var Contenuto = document.getElementById("Contenuto");
CountHistory++;
History1 = { "HS" : Contenuto.innerHTML};
}

function Restore(){
document.getElementById('Contenuto').innerHTML = History1.HS;
}