OK, so it’s a bit more complicated then just clicking on the div text and having it turn blue. I did not want to post a bunch of code, so I tried to simplify it. I thought that if I knew the concept I would be able to figure out what I really want to do.
So here is what I am really after: in the html, you will see that I have categories and sub categories. There are two sets of radio buttons for each listed item. All the radio button questions are hidden until you click on the text. If you answer both questions and close the questions by clicking on the item’s text, the text turns blue, indicating that you have completed answering the questions for that item. All of that I have figured out already and it works fine.
What I am now trying to do is make it so if the 5th radio button of the first question is checked, it will also cause the 5th radio button of the second question and all other 5th radio buttons of its subsets to be checked. It should then cause the item’s text to change to blue and all the subset item’s text to change to blue when the item is clicked to hide the questions.
In other words, if you click on “Common House” and check “Absolutely don’t want”, when you click on “Common House” again to hide the questions, all of the 5th radio buttons (“Absolutely don’t want” & “Never”) will get checked and all the Item Text from “Common House” to “Dart Board” will be changed to blue.
If, instead, you click on “Game Room / Area” and check “Absolutely don’t want”, when you click on “Game Room / Area” again to hide the questions, all of the 5th radio buttons (“Absolutely don’t want” & “Never”) will get checked and all the Item Text from “Game Room / Area” to “Dart Board” will be changed to blue.
I know, I probably should have just posted all this originally. I just thought I was saving you all from having to read extra code.
Javascript:
<script type="text/javascript">
function chkSelect(Qnum)
{
var n=false, p=false;
var need = document.getElementsByName('NeedRank_' + Qnum);
var priority = document.getElementsByName('PriorityRank_' + Qnum);
var outerObj = document.getElementById("outerText_" + Qnum);
var innerObj = document.getElementById("innerText_" + Qnum);
var divblkObj = document.getElementById("divBlock_" + Qnum);
var msgObj=document.getElementById("msg");
var nValue5 = document.getElementById("n" + Qnum + "v5");
var pValue5 = document.getElementById("p" + Qnum + "v5");
//
if(innerObj.style.display == "none")
{ outerObj.style.color = "#2BA5AB"; // cyan
innerObj.style.display = "block";
divblkObj.style.backgroundColor = "#F0FFF0"; //lt green
}
else
{ outerObj.style.color = "#000"; // black
innerObj.style.display = "none";
divblkObj.style.backgroundColor = "transparent";
var i;
for ( i = 0; i < need.length; i++)
{ if (need[i].checked){ n = true; } }
//
for ( i = 0; i < priority.length; i++)
{ if (priority[i].checked) { p = true; } }
//
if ((n == p && n == true) || (need.value('need_5').checked)){ outerObj.style.color = "#00F"; }// blue
else { outerObj.style.color = "#000"; } // black
}
msgObj.innerHTML="need selected= "+n+"; priority selected= "+p+";";
}
</script>
HTML:
(Note: I had to cut out some of the HTML because I was limited to 32000 characters)
<form id="contact-form" action="script.php" method="post">
<div id="divBlock_1" class="divBlocks">
<h5 id="outerText_1" onclick="chkSelect('1');"><img alt="disc" src="images/disc.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle"/>Common House</h5>
<div id="innerText_1" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1v5" name="NeedRank_1" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1v5" name="PriorityRank_1" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.1" class="divBlocks_sub1">
<h5 id="outerText_1.1" onclick="chkSelect('1.1');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Kitchen</h5>
<div id="innerText_1.1" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.1" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.1" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.1" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.1" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.1v5" name="NeedRank_1.1" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.1" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.1" alue="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.1" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.1" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.1v5" name="PriorityRank_1.1" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.2" class="divBlocks_sub1">
<h5 id="outerText_1.2" onclick="chkSelect('1.2');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Dining / All Purpose Room</h5>
<div id="innerText_1.2" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.2" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.2" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.2" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.2" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.2v5" name="NeedRank_1.2" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.2" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.2" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.2" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.2" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.2v5" name="PriorityRank_1.2" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.3" class="divBlocks_sub1">
<h5 id="outerText_1.3" onclick="chkSelect('1.3');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Office</h5>
<div id="innerText_1.3" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.3" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.3" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.3" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.3" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.3v5" name="NeedRank_1.3" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.3" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.3" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.3" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.3" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.3v5" name="PriorityRank_1.3" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.4" class="divBlocks_sub1">
<h5 id="outerText_1.4" onclick="chkSelect('1.4');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Library (Area)</h5>
<div id="innerText_1.4" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.4" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.4" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.4" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.4" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.4v5" name="NeedRank_1.4" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.4" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.4" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.4" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.4" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.4v5" name="PriorityRank_1.4" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.5" class="divBlocks_sub1">
<h5 id="outerText_1.5" onclick="chkSelect('1.5');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Restroom</h5>
<div id="innerText_1.5" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.5" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.5" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.5" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.5" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.5v5" name="NeedRank_1.5" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.5" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.5" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.5" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.5" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.5v5" name="PriorityRank_1.5" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.6" class="divBlocks_sub1">
<h5 id="outerText_1.6" onclick="chkSelect('1.6');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Gifts (Area)</h5>
<div id="innerText_1.6" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.6" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.6" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.6" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.6" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.6v5" name="NeedRank_1.6" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.6" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.6" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.6" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.6" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.6v5" name="PriorityRank_1.6" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.7" class="divBlocks_sub1">
<h5 id="outerText_1.7" onclick="chkSelect('1.7');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Bedroom(s)</h5>
<div id="innerText_1.7" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.7" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.7" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.7" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.7" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.7v5" name="NeedRank_1.7" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.7" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.7" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.7" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.7" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.7v5" name="PriorityRank_1.7" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.12" class="divBlocks_sub1">
<h5 id="outerText_1.12" onclick="chkSelect('1.12');"><img alt="circle" src="images/circle.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Game Room / Area</h5>
<div id="innerText_1.12" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.12" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.12" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.12" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.12" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.12v5" name="NeedRank_1.12" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.12" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.12" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.12" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.12" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.12v5" name="PriorityRank_1.12" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.12.1" class="divBlocks_sub2">
<h5 id="outerText_1.12.1" onclick="chkSelect('1.12.1');"><img alt="square" src="images/solid-square.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Pinball</h5>
<div id="innerText_1.12.1" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.12.1" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.12.1" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.12.1" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.12.1" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.12.1v5" name="NeedRank_1.12.1" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.12.1" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.12.1" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.12.1" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.12.1" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.12.1v5" name="PriorityRank_1.12.1" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.12.2" class="divBlocks_sub2">
<h5 id="outerText_1.12.2" onclick="chkSelect('1.12.2');"><img alt="square" src="images/solid-square.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Foosball</h5>
<div id="innerText_1.12.2" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.12.2" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.12.2" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.12.2" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.12.2" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.12.2v5" name="NeedRank_1.12.2" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.12.2" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.12.2" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.12.2" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.12.2" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.12.2v5" name="PriorityRank_1.12.2" value="Priority_5" style="width: 25px"/>
</div>
</div>
<div id="divBlock_1.12.6" class="divBlocks_sub2">
<h5 id="outerText_1.12.6" onclick="chkSelect('1.12.6');"><img alt="square" src="images/solid-square.gif" style="height:16px;width:16px;margin-right:5px;vertical-align:middle" />Dart Board</h5>
<div id="innerText_1.12.6" style="display: none">
<h6 class="spacer">Need:</h6>
<span class="spacer">Absolutely must have</span><input type="radio" name="NeedRank_1.12.6" value="need_1" style="width: 25px"/>
<span class="spacer">Kind of want , but OK if we don't have</span><input type="radio" name="NeedRank_1.12.6" value="need_2" style="width: 25px"/>
<span class="spacer">Neither here nor there</span><input type="radio" name="NeedRank_1.12.6" value="need_3" style="width: 25px"/>
<span class="spacer">Kind of don't want, but OK if we have</span><input type="radio" name="NeedRank_1.12.6" value="need_4" style="width: 25px"/>
<span class="spacer">Absolutely don't want</span><input type="radio" id="n1.12.6v5" name="NeedRank_1.12.6" value="need_5" style="width: 25px"/>
<br/><br/>
<h6 class="spacer">Priority:</h6>
<span class="spacer">One of the first things to do</span><input type="radio" name="PriorityRank_1.12.6" value="Priority_1" style="width: 25px"/>
<span class="spacer">Within a year or two</span><input type="radio" name="PriorityRank_1.12.6" value="Priority_2" style="width: 25px"/>
<span class="spacer">Within the first ten years</span><input type="radio" name="PriorityRank_1.12.6" value="Priority_3" style="width: 25px"/>
<span class="spacer">Sometime in the future</span><input type="radio" name="PriorityRank_1.12.6" value="Priority_4" style="width: 25px"/>
<span class="spacer">Never</span><input type="radio" id="p1.12.6v5" name="PriorityRank_1.12.6" value="Priority_5" style="width: 25px"/>
</div>
</div>
</form>