function confirmDelete(href,ask) {
	var ques = window.confirm(ask);
	
	if(ques)
		window.location = href;
}