// JavaScript Document

  function clearText(question_box)
  {
    if (question_box.defaultValue == question_box.value)
      question_box.value = '';
  }
  
  function addText(question_box)
  {
    if (question_box.value == '')
      question_box.value = question_box.defaultValue;
  } 
