function link_confirm_question( link_loc, question)
{
  var answer = confirm(question)
  if (answer)
  {
    window.location = link_loc;
  }
}

