function foto_load(foto_src)
{
        document.images["foto_principal"].src = foto_src;
}

function descricao_load(descr_foto)
{
        document.getElementById("descricao-principal").childNodes[0].nodeValue = descr_foto;
}

function popup_modificar(cod_foto)
{
        center_x = (screen.width - 350)/2;
        center_y = (screen.height - 210)/2;

        window.open('fotos_popup_modificar.php?cod=' + cod_foto, 'mod_descr', 'top=' + center_y + ',left=' + center_x + ',width=350 ,height=210');
}

