﻿/* 
Copyright (c) 2010 Freellas - [www.freellas.com.br]
Todos os direitos reservados.
Autor: Tiago Freire Nascimento - c4tiago@gmail.com
-------------------------------------------------------------------
*/

function SelectAll() {
    $("input:checkbox[name*='chkSelecao']").each(function() {
        $(this).attr('checked', true);
    });
}

function UnSelectAll() {
    $("input:checkbox[name*='chkSelecao']").each(function() {
        $(this).attr('checked', false);
    });
}
