function diviGoster(id)
{
    document.getElementById(id).style.display = "block";
}

function diviKapat(id)
{
    document.getElementById(id).style.display = "none";
}

