function handleDelete(url){
	if (confirm("Are you sure you want to delete this?")){
		window.location=url;
	}
}
$(document).ready(function() { 
    // call the tablesorter plugin 
    $(".tablesorter").tablesorter({ 
        // sort on the first column and third column, order asc 
        sortList: [[0,0]] 
    }); 
}); 
