The most common default/front page configuration is:
<body>
<p>Welcome to TITLE OF WEB SITE</p>
<p><a href="ksw/jscheck.htm">Click here to enter site</a></p>
<p><a href="ksw/toc.htm">Complete list of pages on this site</a></p>
</body>
Note. Above, options are [YES]Google [YES]JS [NO]Direct. See Default/Front Page Options.
But you may bypass the default/index page altogether, so when your site is called, the frameset is displayed directly, with the default topic in the main frame. Then the default/front page should be configured as follows:
<body>
<p>Loading... </p>
<p><a href="ksw/toc.htm">Complete list of pages on this site</a></p>
<script type="text/javascript">
window.location.replace("ksw/jscheck.htm");
</script>
</body>
Note. Above, options are [YES]Google [YES]JS [YES]Direct. See Default/Front Page Options.
Like in JavaScript Check, you may replace ksw/jscheck.htm in parentheses with ksw/frameset.htm. This removes the JS check:
<body>
<p>Loading... </p>
<p><a href="ksw/toc.htm">Complete list of pages on this site</a></p>
<script type="text/javascript">
window.location.replace("ksw/frameset.htm");
</script>
</body>
Note. Above, options are [YES]Google [NO]JS [YES]Direct. See Default/Front Page Options.