/* delete function */ 
function ibotdelete(url) {
	var answer = confirm("Are you sure you want to delete this item?")
	if (answer){
		window.location = url;
	}
}

