function deleteRow(url) {
	if (confirm('Are you sure?')) {
		var base = $('base').attr('href');
		window.location =  base + url;
	}
	return false;
}
