/*
 * Labware JavaScript functions.
 *
 */

function expand(id1,id2) {
  id1.className = "expanded";
  id2.className = "collapsed";
}

function verifyDelete(flag) {
  if (confirm("Are you sure you want to delete this item?")) {
    document.location = "index.php?" + flag;
  }
}
