
function clearBox(box) {
 if(box.value==box.defaultValue) {
    box.value = "";
 }
}
function clearStyle(box, width, bold) {
  box.style.fontStyle = "normal";
  box.style.fontWeight = bold;
  box.style.color = "black";
  box.style.width = width + "px";
}
