// Lakeshore Playground JavaScript Code
//  News functions.
//
// Written by Robert J. Rouquette
// Date: 12:44 PM 8/26/2007

function delete_article(title, id) {
  if( confirm("Delete the following article:\n" + title) ) {
    location.href = "/news/" + id + "/delete";
  }
}