What about non-JavaScript Browsers?

Browsers which understand JavaScript are redirected to a DHTML page. 

Browsers that do not understand JavaScript will see static content. 

Example:

<html><body><script>

window.location="js_redirect.htm"

</script>
<h3>You have a non-JavaScript browser. We have static content for you to see.</h3>
</body></html>

Author: Michael Curry