function bold (type) {
  if (type == "start")
    return "<b>";
  else
    return "</b>";
}
