function delConfirm(where, question) {
	if (confirm(question) == true) {
		window.location.href =''+where;
	} else {
		return false; 
	}

}
