// JavaScript Document
function replace() {
  document.getElementById('number').innerHTML = "<b>2. </b>";
  document.getElementById('question').innerHTML = "<b>In what year did General Hospital Debut?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1975 ";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1963";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1983";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> 1977";
  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 Emily Quartermaine’s Biological Mother?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Helena";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Paige";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Monica";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Lois";
  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>Before playing Uncle Jesse on Full House, he played Blackie Parish</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Bob Saget";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Jake Blanchard";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> John Stamos";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Richard Anderson";
  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>What are the names of Sonny and Carly’s children?</b>";
  document.getElementById('choiceone').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Sam & John";
  document.getElementById('choicetwo').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> George & Madison";
  document.getElementById('choicethree').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Frank & Gill";
  document.getElementById('choicefour').innerHTML = "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"radio\" /> Michael & Morgan";		
  document.getElementById('nextbutton').innerHTML = "<a href=\""+ url + "\"><img src=\"../img/winbg.jpg\" border=\"0\"></a>";
}