Yeah, it's pretty easy to do. Here's the complete code. This sample will
replace the page you are looking at with a page that is created by
concatenating the user's input to the question "So, what's the password?".
Of course you can change that one and the string in the body of the code,
too. Most of the other meta tags are FrontPage generated. You'll probably
have your own in your own page. The most important parts below are the
<script> section in the <head> of the document and the <form> section in the
<body> below. Have fun!
=========================================================
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Private Stuff</title>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Page-Enter"
content="revealTrans(Duration=3.0,Transition=4)">
<script LANGUAGE="Javascript">
//try to load the page requested
function spec_qualify()
{
var resp;
resp = window.prompt("So, what's the password?","");
location.replace("
http://www.YOURDOMAIN.com/YOURPATH/" + resp + ".htm");
}
</script>
<meta name="Microsoft Theme" content="pixel 111, default">
<meta name="Microsoft Border" content="t, default">
</head>
<body>
<p align="center"> </p>
<p> </p>
<form>
<p align="center">
<input type="button" value="Click here to enter." onClick="spec_qualify()">
</p>
</form>
</body>
</html>
====================================================