function confirmation(elem) {
	var answer = confirm("Are u sure u want to delete selected?")
	if (answer){
		window.location = elem;
	}
}
