function checkUncheckAll(o,c) {
	var i;
	for (i = 0; i< o.length; i++) {
		o[i].checked = c.checked;
	}
}

function confirmDelete(theLink,Name)
{
   

    var is_confirmed = confirm('Are you sure you wish to delete \n' + Name);
    if (is_confirmed) {
        theLink.href += '&is_confirmed=1';
    }

    return is_confirmed;
}


