function confirm_action( action, action_description ) {
    var answer = confirm("Are you sure you want to " + action_description);
    if (answer){
	document.location.href = action;
    }
    return false;  
}


