function toggle(id)
{
    var obj = document.getElementById(id);
    obj.style.display = ((obj.style.display == "none") ? "" : "none");
}

function msgDel(id, ret)
{
    dont = window.confirm("Biztosan törölni szeretnéd?");

    if (dont == true) {
        location.href='module/msgdel.php?id=' + id + '&return=' + ret;
    }
}

function popupWindow()
{
    window.open('http://2fastdownload.hu/theme/default/templates/tell_a_friend/tell_a_friend.php', 'tellafriend', 'scrollbars=1,statusbar=1,resizable=1,width=415,height=510');
}

