Hola BatiK:
El sistema de los iframes es similar al de los frames, yo suelo usar javascript, y modificar el atributo src en el parent, pero creo que se puede usar el atributo name/target, voy a hacer unas pruebas, y te cuento.
Saludos
Bueno, preparé el siguiente sistema de frames:
Código PHP:
<html>
<head>
<title>
IFrames
</title>
</head>
<body>
<iframe src=iframe1.html name=frame1>
</iframe>
<iframe src=iframe2.html name=frame2>
</iframe>
</body>
</html>
El fichero iframe2.html, lo dejé en blanco, y el iframe1.html contiene lo siguiente:
Código PHP:
<html>
<body>
<a href=iframe1.html target=frame2
onclick="parent.frame1.location.href='iframe2.html'">
intercambio
</a>
</body>
</html>
Espero que te sirva.
Saludos