function afiseazaHarta()
{
    harta = window.open("Localizare Project Activ", "", "directories=no,toolbar=no,addressbar=no,resizable=no,menubar=no,scrollbars=no,status=no,width=790,height=580" );
    harta.document.writeln("<html><head><title>Localizare Project Activ</title></head><body>");
    harta.document.writeln("<div style=\"width:100%; height:100%; text-align:center; vertical-align:center; font-family:Arial; font-size:14px; font-weight:bold\">");
    harta.document.writeln("<img src=\"images/localizeaza_project_activ.gif\">");
    harta.document.writeln("<br>Filiala Clubului &#350;colar Sportiv \"Unirea\", str. G. Enescu nr. 15<br>&#238;n spatele fostului restaurant Bucegi");
    harta.document.writeln("</div>");
    harta.document.writeln("</body></html>");
}

function afiseazaImpresii(idRef)
{
    var r = document.getElementById("ref" + idRef);
    if (r.style.display == "none") {
        r.style.display = "block";
    } else {
        r.style.display = "none";
    }
}

function extinde(idNoutati)
{
    var noutati;
    noutati = document.getElementById(idNoutati);
    
    parent = noutati.parentNode;
//    parent.style.height = noutati.style.scrollHeight;
    noutati.style.height = 200;
    parent.style.height = 200;
    return;
}
