function showPlanDAcces()
{
    document.getElementById('PlanDAcces').style.display = 'block';
}

function hidePlanDAcces()
{
        var nodeObj = document.getElementById('PlanDAcces');
        nodeObj.style.display = 'none';
}

function printPlanDAcces()
{
    hidePlanDAcces();
    window.print();
}