/**
 * @author Phillipo
 */

function IsChecked(el) {
    return $$('#' + el + ' input').find(
        function(e) {return e.checked;}
	); 
};

