Page is a not externally linkable
rewboss - 9:54 am on Jun 20, 2002 (gmt 0)
I'd take the general idea of using an external .js file, but I would put the document.write() statements in a function: function writeDiv(){ Then, in the HTML file itself, you need to write: <script> However, this unreliable to say the least. A far more workable solution would be to use a client-side script.
PsychoTekk's solution will generate a runtime error in Netscape 4.
document.write('.......');
}
writeDiv();
</script>