================COPY CODE BELOW=========================== <form action="search_result.php" method="get" name="thisForm"> I Like<BR /> <input type="radio" name="Like" value="Coke" onclick="thisForm.DontLike[0].checked = true;" checked="checked"/ >Coke<BR> <!-- 0 = First Box, 1 = Second Box --> <input type="radio" name="Like" value="Pepsi" onclick="thisForm.DontLike[1].checked = true;"/>Pepsi<BR><BR> <!-- 0 = First Box, 1 = Second Box --> I Don't Like<BR /> <input type="radio" name="DontLike" value="Pepsi" onclick="thisForm.Like[1].checked = true;" checked="checked"/>Pepsi<BR> <!-- 0 = First Box, 1 = Second Box --> <input type="radio" name="DontLike" value="Coke" onclick="thisForm.Like[0].checked = true;" />Coke<BR> <!-- 0 = First Box, 1 = Second Box --> </form> ================COPY CODE ABOVE===========================
================COPY CODE BELOW===========================
<form action="search_result.php" method="get" name="thisForm"> I Like<BR /> <input type="radio" name="Like" value="Coke" onclick="thisForm.DontLike[0].checked = true;" checked="checked"/ >Coke<BR> <!-- 0 = First Box, 1 = Second Box --> <input type="radio" name="Like" value="Pepsi" onclick="thisForm.DontLike[1].checked = true;"/>Pepsi<BR><BR> <!-- 0 = First Box, 1 = Second Box --> I Don't Like<BR /> <input type="radio" name="DontLike" value="Pepsi" onclick="thisForm.Like[1].checked = true;" checked="checked"/>Pepsi<BR> <!-- 0 = First Box, 1 = Second Box --> <input type="radio" name="DontLike" value="Coke" onclick="thisForm.Like[0].checked = true;" />Coke<BR> <!-- 0 = First Box, 1 = Second Box --> </form>
================COPY CODE ABOVE===========================