function showF(f){
document.getElementById(f).style.display='inline';
}

function hideF(f){
document.getElementById(f).style.display='none';
}
