Questa è la pagina con l'impostazione del frameset:
codice:
<html>
<head>
<title>Titolo</title>
</head>
<frameset cols="20%,80%">
<frame name="radio" src="radio.html">
<frame name="apripag" src="http://www.html.it/">
</frameset>
</html>
Questa è la pagina radio.html:
codice:
<html>
<head>
<title>Titolo pagina</title>
</head>
<body>
<form>
<input type="radio" name="sito" value="freephp" onclick="javascript:parent.apripag.location='http://www.freephp.it/';"> freephp.it
<input type="radio" name="sito" value="freeasp" onclick="javascript:parent.apripag.location='http://www.freeasp.it/';"> freeasp.it
</form>
</body>
</html>
Ciao