io stavo pensando di usare questo
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" language="javascript">
function homepage(){
parent.frames['immagine'].location.href='homeimmagine.html';
parent.frames['testo'].location.href='hometesto.html';
}
function contatto(){
parent.frames['immagine'].location.href='cartina.html';
parent.frames['testo'].location.href='contatti.html';
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento senza titolo</title>
</head>
<body>
<a href="#" onClick="homepage();">mainpaige
</a>
<a href="#" onClick="contatto();">contatti
</a>
</body>
</html>
che ne pensi?