function ml_confirm(message, url) {
  var append = '&confirm=true';
  if(confirm(message)) {
  	window.location = url+append;
  }
  return false;
}

