function mostra(id)
{

current = (document.all[id].style.display == 'block') ? 'none' : 'block';

document.all[id].style.display = current;


}
