function getoath(lang) {
  switch(lang) {
  case "English":
    var newoath = 
      "&quot;I here swear fealty and do homage<br /> \
      to the Crown of the Middle Kingdom:<br /> \
      To ever be a good knight and true,<br /> \
      Reverent and generous,<br /> \
      Shield of the weak,<br /> \
      Obedient to my liege-lord,<br /> \
      Foremost in battle,<br /> \
      Courteous at all times,<br /> \
      Champion of the right and the good.<br /> \
      Thus swear I, Sir/Master &lt;&lt;Name&gt;&gt;.&quot;";
    document.getElementById('oathtext').innerHTML = newoath;
    break;
  default:
    var newoath = 
      "&quot;I here swear fealty and do homage<br /> \
      to the Crown of the Middle Kingdom:<br /> \
      To ever be a good knight and true,<br /> \
      Reverent and generous,<br /> \
      Shield of the weak,<br /> \
      Obedient to my liege-lord,<br /> \
      Foremost in battle,<br /> \
      Courteous at all times,<br /> \
      Champion of the right and the good.<br /> \
      Thus swear I, Sir/Master &lt;&lt;Name&gt;&gt;.&quot;";
    document.getElementById('oathtext').innerHTML = newoath;
  }
}
