In order to ensure that this floating frame is not loaded directly I added this snippet of JavaScript to the <head></head> section of the HTML.
<script language="JavaScript">
<!--
if (parent.frames.length == 0) {
window.location.href="advancedhtml.htm"
}
// -->
</script>
|