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

function actionPanel(dv, acao) {
    if (acao == "open") {
        document.getElementById(dv).style.display = 'block';
        document.getElementById('divFundo').style.display = 'block';
    }

    if (acao == "close") {
        document.getElementById('divFundo').style.display = 'none';
        document.getElementById(dv).style.display = 'none';
    }
}

function pegaUrl(url) {
    document.getElementById(url).value = top.location.href;
}
