<!--
function display(id) {
document.getElementById(id).style.display = "block";
}

function hidesofort(id) {
document.getElementById(id).style.display = "none";
}
				
function hide(id) {
document.getElementById(id).style.display = "none";
}
//-->