this works with IE, i don't have a clue about anything else. even if you put in a javascript that will open a different version of the page, still not watertight.
you can make Layers that overlap. or put an image in a layer that site ontop of where two other layers join.
<div id="Layer_ID_Here" style="position:absolute; width:640px; height:480px; z-index:1; left: 10px; top: 10px">
stuff in the layer here - [img]thing.pic[/img]
id = self explanitory
style.z-index = layer order, layer 3 will sit on top of layer 1 & 2
style.left and .top = where the layer sits on the page in relation to the origin (0,0)
</div>
<!-----------------------!>
you could always use an iFrame, or InlineFrame, if you want to make a certain part scrollable, you could put an iFrame in a table cell or in a layer. you can't have a picture in a layer thats half on half off the iFrame, even if the z-index of the layer with the picture is higher than the layer with the iFrame. the below code should make an iFrame of width 830 pixels and height 430 pixels, with no border. this iFrame will display the contents of Contents.html. and you can have iFrames and Layers galore in Contents.html.
<iframe width="830" height="430" frameborder="0" src="Contents.html">
</iframe>
you will probably have serious compatibility issuse with this method.
