function processForm(){

var total=0;
if (document.forms[0].elements[1].checked){
    total++;
  }
if (document.forms[1].elements[2].checked){
    total++;
  }
if (document.forms[2].elements[0].checked){
    total++;
  }
if (document.forms[3].elements[3].checked){
    total++;
  }
if (document.forms[4].elements[3].checked){
    total++;
  }
if (document.forms[5].elements[0].checked){
    total++;
  }
if (document.forms[6].elements[3].checked){
    total++;
  }
if (document.forms[7].elements[2].checked){
    total++;
  }
if (document.forms[8].elements[3].checked){
    total++;
  }
if (document.forms[9].elements[2].checked){
    total++;
  }
alert('You answered '+ total + ' correct question(s)' );

}

