// JavaScript Document
function replace() {
  document.getElementById('number').innerHTML = "<b>2. </b>";
  document.getElementById('question').innerHTML = "<b>What are Todd and Blair’s children’s names?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Starr & Jack ";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Christian & Matt";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Monica & George";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Flash & Tommy";
  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>Who is Kelly in love with?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Flash";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Mike";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Kevin";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Matt";
  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>What year did One Life to Live debut in?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1953";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1987";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1968";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1949";
  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>How many Daytime Emmy Awards has Slezak won?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 3";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 4";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 6";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> None";		
  document.getElementById('nextbutton').innerHTML = "<a href=\""+ url + "\"><img src=\"../img/winbg.jpg\" border=\"0\"></a>";
}