only ONE problem.....what about the dork who's looking over someone's shoulder & sees that the url is: <A HREF="
TARGET="_new">
& just browses directly there???<br>
<br>
One way around this difficulty is the most effective JS password protection scheme I've seen yet. (aside from actively encrypting & decrypting that password data client-side)<br>
<br>
<i><script language="JavaScript"><br>
var x = prompt("Enter Password",""

;<br>
show(x)<br>
function show(url)<br>
{<br>
window.open(eval(x+'.html'),'authenticate')<br>
window.authenticate.pass=x<br>
}<br>
</script></i><br>
<br>
in the <i>x.html</i> page, load an image (<i>x</i>.gif) using the <i>pass</i> variable that you just passed the password to; if the image loads, have it print the protected page into itself via <i>document.writeln('blah blah blah')</i> statements; if the image doesn't load (i.e. <i><image onError=</i>) have the new window simply close itself before the user gets a chance to view source on it (using noStatusBar and noLocationBar attributes on the new window will greatly enhance this as the new window will then not give away the URL to even a determined user unless they dig through the whole of both codes. (including some junk setTimeouts & math computations/variable convertings throughout your completed code will also greatly enhance the security by making it harder to read only the important code amongst the huge amount of filler....

<br>
<p>-Robherc<br><a href=mailto:robherc@netzero.net>robherc@netzero.net</a><br><a href= > </a><br>*nix installation & program collector/reseller. Contact me if you think you've got one that I don't
