function refreshZebraTables(shift) {
    $(shift ? "tbody tr:odd" : "tbody tr:even",$("table.uwrTable")).removeClass("uwrZebraEven").addClass("uwrZebraOdd");
    $(shift ? "tbody tr:even" : "tbody tr:odd",$("table.uwrTable")).removeClass("uwrZebraOdd").addClass("uwrZebraEven");
}

function toggleColumn(column, context) {
	$('th:nth-child(' + column + ')',context).toggle();
	$('td:nth-child(' + column + ')',context).toggle();
};

function toggleColumn2(tableId, column) {
	$('#'+tableId + ' th:nth-child(' + column + ')').toggle();
	$('#'+tableId + ' td:nth-child(' + column + ')').toggle();
};

