function setvalueyes(str) {
       with (document.forms["the_form"]) {
        eval(str + ".value = 'Yes'");
       } // end with
      } // end function setvalueyes()

function setvalueno(str) {
       with (document.forms["the_form"]) {
        eval(str + ".value = 'No'");
       } // end with
      } // end function setvalueno()