Generally this is a bad idea, if your design cannot survive the vagaries of server availability, it probably needs to be reworked. Most users will be patient as the frameset loads. However, you could try (untested):
Code:
<frameset cols="15%, *" id="fs1"
onload="window.frames['right'].location.href='right.html';this.onload = function(){return;};">
<frame src="left.html" name="left" frameborder="1" id=leftId>
<frame src="about:blank" name="right" frameborder="1" id=rightId>
</frameset>
or:
Code:
<frameset cols="15%, *" id="fs1">
<frame src="left.html" name="left" frameborder="1" id=leftId
onload="top.frames['right'].location.href='right.html';this.onload = function(){return;};">
<frame src="about:blank" name="right" frameborder="1" id=rightId>
</frameset>
Bookmarks