// JavaScript Document
function replace() {
  document.getElementById('number').innerHTML = "<b>2. </b>";
  document.getElementById('question').innerHTML = "<b>What family does the show revolve around?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> The Montgomerys ";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> The Forresters";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> The Delgados";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> The Haspers ";
  document.getElementById('nextbutton').innerHTML = "<a href=\"javascript:replace3()\"><img src=\"../img/nextbuttonbg.jpg\" border=\"0\"></a>";
}
function replace3() {
  document.getElementById('number').innerHTML = "<b>3. </b>";
  document.getElementById('question').innerHTML = "<b>What industry does the main family do business in?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Computers";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Fashion";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Hotels";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Airlines";
  document.getElementById('nextbutton').innerHTML = "<a href=\"javascript:replace4()\"><img src=\"../img/nextbuttonbg.jpg\" border=\"0\"></a>";
}
function replace4() {
  document.getElementById('number').innerHTML = "<b>4. </b>";
  document.getElementById('question').innerHTML = "<b>In Italy, What is the Bold and the Beautiful called?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Bold and Pretty";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Beautiful";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Bold";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Beautiful and Dangerous";
  document.getElementById('nextbutton').innerHTML = "<a href=\"javascript:replace5()\"><img src=\"../img/nextbuttonbg.jpg\" border=\"0\"></a>";
}
function replace5() {
  document.getElementById('number').innerHTML = "<b>5. </b>";
  document.getElementById('question').innerHTML = "<b>Who shot Taylor?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Zach";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Eric";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Sheila";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Caroline";		
  document.getElementById('nextbutton').innerHTML = "<a href=\""+ url + "\"><img src=\"../img/winbg.jpg\" border=\"0\"></a>";
}
