﻿function mostra(id)
{
    document.getElementById(id).style.display = 'block';
}

function nascondi(id)
{
    document.getElementById(id).style.display = 'none';
}

