﻿function reloc(s)
{
    if (document.location.href)
        window.location = s;
    else
        document.location = s;
}
function req(name, id)
{
    if (confirm('Biztosan elkéri emailben a következő fájlt: '+name+'?'))
    {
        reloc('clientarea.php?page=myfiles&action=request&id='+id);
    }
}
function toggle(id)
{
    var e = document.getElementById(id);
    if (e != null)
    {
        if (e.style.display != 'block')
            e.style.display = 'block';
        else
            e.style.display = 'none';
    }
}

