Radio button onclick change url?

I have a radiobutton set of 2 radiobuttons… I want to be able to change url if the radiobuttons are checked… How do I go about that… I have figured out that I need to use the onClick handler, but cant firgure out how to change the url… Please help :slight_smile:

<input type=“radio” onclick=“document.location=‘url’;” />Some text

Where url is the url you want to redirect to

Oh yeah… Thanks :slight_smile: