Per non stravolgere quanto finora postato lo adatto... ma tieni presente che si puo' fare in molteplici modi
[code]
<script>
if(screen.width<=800 && screen.height==600) {
nume='indice1.html'
} else {
nume='indice.html'
}
d = window.document;
a = '<frameset cols="200,*" frameborder="NO" border="0" framespacing="0" rows="*">';
a += '<frame name="leftFrame" scrolling="NO" src="';
a += nume;
a += '">';
a += '<frame name="main" src="home.htm">';
d.write(a);
d.close();
</script>
ciao