window.onload = function()
{
    $$('.del').each(
        function(e)
        {
            e.onclick = function()
            {
                if (confirm('Weet u het zeker?'))
                    location = '/delete_example/' + this.id.replace('del_', '');
            }
        }
    );
}

