I have a photo and a description. They both have a radio button by them. One picture corrisponds to one description and likewise for the others.
Here is some test code:
<form name=dogs>
<input type="radio" name="dog1" value="newfoundland" onClick="window.document.dogs.dog2.value=this.value"> Newfoundland
<input type="radio" name="dog1" value="bernese" onClick="window.document.dogs.dog2.value=this.value"> Bernese Mountain Dog
<p>
<input type="radio" name="dog2" value="newfoundland" onClick="window.document.dogs.dog2.value=this.value"> <img src=newf.gif>
<input type="radio" name="dog2" value="bernese" onClick="window.document.dogs.dog2.value=this.value"> <img src=bern.gif>
</form>
I just want to make sure that when i pass the values to the next page, both corresponding radio buttons are checked so if a creative type clicks on the picture or a technical type clicks on the description they match.
I hope this makes since.