The most common entry 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">List of topics on this site</a></p>
</body>
Note. Above, options are [YES]Google [YES]JS [NO]Direct. See Entry Page Options.
But you may bypass the entry page altogether, so when your site is called, the frameset is displayed directly, with the home topic in the main frame. Then the entry page should be configured as follows:
<body>
<p>Loading... </p>
<p><a href="ksw/toc.htm">List of topics 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 Entry 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">List of topics 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 Entry Page Options.