function menuOn(Id) {
document.getElementById('str'+Id).style.visibility='visible';
}

function menuOff(Id) {
document.getElementById('str'+Id).style.visibility='hidden';
}