<!--

// written by Rosalind Lord of www.seaserpent.com

// CHECK USING SUBMIT BUTTON:

// if the submit button is used to give congresspeople with notes checkmarks:

function checkCongressPerson(){
for (i=0; i<document.senatehouse.length; i++){
if (document.senatehouse[i].type == "text" && document.senatehouse[i].name.lastIndexOf("Notes") != -1) {
if (document.senatehouse[i].name.lastIndexOf("sen") != -1) {
var senNumber = document.senatehouse[i].name.slice(8);
if (document.senatehouse[i].value != "") {
document.senatehouse["calledsen" + senNumber].checked = 1;
} 
} else if (document.senatehouse[i].name.lastIndexOf("rep") != -1) {
var repNumber = document.senatehouse[i].name.slice(8);
if (document.senatehouse[i].value != "") {
document.senatehouse["calledrep" + repNumber].checked = 1;
} 

}
} 

}

}


//-->
