function PIQUE(myForm) {
  var myScore = 0;
  var checkedCount = 0;
  for (var i=0;i<myForm.elements.length;i++) {
    
       if (myForm.elements[i].checked) {
        myScore += parseInt(myForm.elements[i].value);
        checkedCount ++;
       }
    
   
  }
  if (checkedCount == 4) {
    
    toggleOn("scoreTitle");
    toggleOff("scoreSevere","scoreHigh","scoreElevated","scoreGuarded","scoreLow");
    adopt("scoreVal",myScore);
    if(myScore > 10) {
     toggleOn("scoreSevere");
     showPaste("Flame-Throwing Revolutionary","scoreSevere");
    }
    else if (myScore > 7) {
     toggleOn("scoreHigh");
     showPaste("Fierce Fighter","scoreHigh");
    }
    else if (myScore > 4) {
     toggleOn("scoreElevated");
     showPaste("Passionate Foot Soldier","scoreElevated");
    }
    else if (myScore > 1) {
     toggleOn("scoreGuarded");
     showPaste("Polite Observer","scoreGuarded");
    }
    else if (myScore >=0) {
     toggleOn("scoreLow");
     showPaste("Noncombatant","scoreLow");
    }
   self.scroll(0,$("page").offsetHeight);
   toggleOn("scorePasteLabel");
  }
  else {alert("You're so inoffensive you didn't even take the test! Do you own a Prius?")}
}


function showPaste(myLevel,myDiv) {
 var myContent = $(myDiv).getElementsByTagName("P")[0].childNodes[0].nodeValue;
 toggleOn("scorePaste");
 $("scorePaste").value =  "<div style=\"border:1px solid rgb(133,143,174);background-color: rgb(250,241,218);width: 200px;\">" + 
	"<div style=\"float:left;display:inline;width:50px;overflow:\">" + 
	"<a href=\"http://fightconservatives.clients.arcfield.com\"><img src=\"http://fightconservatives.clients.arcfield.com/images/PIQLink.gif\"" + 
	"alt=\"How to Win a Fight With a Conservative is the ultimate survival guide for political arguments\" width=\"50\" height=\"50\" /></a></div>" +
	"<h1 style=\"font-family: 'Georgia';font-size:12px;padding-top:3px;margin-top:3px;margin-left: 8px;margin-bottom:2px;\">" +
	"My Partisan Intensity Level is: " + myLevel + "</h1>" +
            "<p style=\"padding:4px;margin:0px;font-size:12px;\">" + myContent +  "</p>" +
   "<div style=\"padding: 0px;background-color: white;\">" +
   "<p style=\"padding:4px;margin:0px;\">Take the quiz at <a href=\"http://fightconservatives.clients.arcfield.com/Inside-the-Book/PIQuiz.html\">www.fightconservatives.com</a></p></div></div>";
 
}
