function action_confirm(url, text) {
 	action = confirm(text);
 	if (action) {
    document.location = url;
  }
}

