In realtà, provando, ho visto che si può fare. Intendo apreire un iframe dentro un altro iframe. se ne specifichi gli id (id="nome"), puoi inserire nel target del tuo iframe l'altro iframe. Per me ha funzionato, e vi mostro il codice, nel caso potesse servire a qualcuno.
Pagina principale:
codice:
<style type="text/css">
#main{ position: relative;
margin: 0;}
#casapagina { position: absolute;
z-index: 6;}
#imac { position: absolute;
z-index: 2;
margin-left: 70px;
margin-top: 40px;}
#tastiera { position: absolute;
z-index: 4;
margin-left: 21px;
margin-top: 368px;}
#schermo { position: absolute;
margin-left: 341px;
margin-top: 46px;
z-index: 3;}
</style>
</head>
<body>
<div id="main">
<div id="casapagina">
[img]../../img/botton_casapagina.jpg[/img]
</div>
<div id="imac">
[img]imac.png[/img]
<map name="date">
<area shape="rect" coords="15, 20, 140, 55" href="13-05-11/frames/tastiera.html" target="tastiera">
</map>
</div>
<div id="schermo">
<div id="tastiera">
<iframe name="tastiera" height="120px" width="460px" target="schermo" frameborder="0" src="13-05-11/frames/tastiera.html">
</iframe>
</div>
<iframe name="schermo" height="500px" width="870px" frameborder="0" src="13-05-11/frames/1.html">
</iframe>
</div>
</div>
</body>
E pagina frame (frame "tasitera")
codice:
<style type="text/css">
#img { position: absolute;
margin: 0;}
</style>
</head>
<body>
<div id="img">
[img]../img/tastiera.png[/img]
<map name="selettore">
<area shape="circle" coords="48, 65, 22" href="1.html" target="schermo">
<area shape="circle" coords="110, 62, 22" href="2.html" target="schermo">
<area shape="circle" coords="189, 70, 22" href="3.html" target="schermo">
<area shape="circle" coords="245, 70, 22" href="4.html" target="schermo">
</map>
</div>
</body>