Dunque, il sito che hai creato tu ha tre frames:

1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
2: <html>
3: <head>
4: <title>Documento senza titolo</title>
5: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6: </head>
7:
8: <frameset rows="203,*" cols="*" frameborder="NO" border="0" framespacing="0">
9: <frame src="titolo1.htm" name="topFrame" scrolling="NO" noresize >
10: <frameset rows="*" cols="120,*" framespacing="0" frameborder="NO" border="0">
11: <frame src="menu1.htm" name="leftFrame" scrolling="NO" noresize>
12: <frame src="news1.htm" name="mainFrame">
13: </frameset>
14: </frameset>
15: <noframes><body>
16:
17: </body></noframes>
18: </html>

Prima cosa da fare è andare sotto la riga 8 ed aggiungerci questa riga:
<noframes><body>Il tuo browser non supporta i frames</body></noframes>

Se vuoi che il titolo del sito appaia nella barra in basso allora vai sulla riga 4 e correggila cosi':
<title>nome che vuoi dare tu</title>
vedrai il nome che hai dato apparire nella barra in basso e anche quando aggiungi il sito ai preferiti.

Riassunto:
Il tuo sito è composto da 3 frames + un frameset
i tre frames si chiamano
titolo1.htm
menu1.htm
news1.htm

mentre il frameset che contiene tutte le informazioni circa la suddivisione delle tre pagine si chiama
index1.htm

in totale sono quindi 4 files. Quando vai a modificare la struttura del frameset, non dimenticare di dire al Dreamweaver di salvare tutta la sequenza dei frames, e per prenderti il sicuro ricarica tutti e 4 i files sul server.

ps per fare le modifiche che ti ho detto all'inizio, apri il file index1.htm con il blocco note, modificalo e salvalo sempre con il blocco notes.

questo è comunque il listato corretto e pulito:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<title>TITOLO CHE VUOI DARE TU</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset rows="203,*" cols="*" frameborder="NO" border="0" framespacing="0">
<noframes><body>Il tuo browser non supporta i frames</body></noframes>
<frame src="titolo1.htm" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="120,*" framespacing="0" frameborder="NO" border="0">
<frame src="menu1.htm" name="leftFrame" scrolling="NO" noresize>
<frame src="news1.htm" name="mainFrame">
</frameset>
</frameset>
</html>


Fammi sapere