function replacecont(id,content) {
var container = document.getElementById(id);
container.innerHTML = content;
}






