function on(id){
document.getElementById(id).style.display='block';
}
function off(id){
document.getElementById(id).style.display='none';
}