<html>
<head>
<!--Step 1: Add the following code to the "head" area-->
<script>
function go(HrefName) {
window.location.href = HrefName;
}
</script>
</head>
<body>
<!--Step 2: Add the following code to the "body" area-->
<form name=form>
<div align=center>
<input type=radio name=HrefName onClick=go('http://www.VeVb.com);>
Selecting activates the hyperlink<br>
<input type=radio name=HrefName onClick=go('http://www.VeVb.com');>
Selecting activates the hyperlink<br>
<input type=radio name=HrefName onClick=go('http://www.VeVb.com');>
Selecting activates the hyperlink<br>
</div>
</form>
</body>
</html>