function bold(id) {
  if (document.getElementById) {
    document.getElementById(id).style.fontWeight = 'bold';
  }
  else if (document.all) {
    document.all[id].style.fontWeight = 'bold';
  }
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
function normal(id) {
  if (document.getElementById) {
    document.getElementById(id).style.fontWeight = 'normal';
  }
  else if (document.all) {
    document.all[id].style.fontWeight = 'normal';
  }
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}