/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function logout()
{
    if(confirm('Sei sicuro di voler uscire?'))
        {
            return true;
        }
    return false;
}
function visualizzaLogin()
{
    document.getElementById('bground').style.display = 'inline';
    document.getElementById('divlogin').style.display = 'inline';
}

function nascondiLogin()
{
    document.getElementById('bground').style.display = 'none';
    document.getElementById('divlogin').style.display = 'none';
}

