
// 
function confirmAction(message,url) {
	var answer = confirm(message);
	if (answer!="0") {
		window.location = url;
	}
}
