wot would you like to use?
ASP or Javascripts?
am personally better with ASP then Javascripts
but heres a javascript:
<script>
Function exitsite(){
a1 = "page1.htm"
a2 = "page2.htm"
a3 = "page3.htm"
b1 = "page4.htm"
b2 = "page5.htm"
b3 = "page6.htm"
window.location = document.form.section1.value + document.form.section2.value
}
</script>
<form name="form">
A: <input type="radio" name="section1" value="a">
B: <input type="radio" name="section1" value="b">
C: <input type="radio" name="section1" value="c">
<br>
1: <input type="radio" name="section2" value="1">
2: <input type="radio" name="section2" value="2">
3: <input type="radio" name="section2" value="3">
<input type="button" value="Click" onClick="javascript:exitsite()">
</form>
now i know this doesnt work, i tested it and dont get it, maybe sumone could edit it 