var suffix = ".html"

var pass_msg = "Enter password below:"

function go_there() {
 location.href = document.pass_form.pass.value + suffix;
}

document.write('<TABLE WIDTH=150><TR><TD ALIGN=LEFT><form name="pass_form" onSubmit="go_there();return false">'
 + pass_msg + '<br><br><input type="password" name="pass" size="20" value="">'
 + '&nbsp;<input type="button" value="OK" onClick="go_there()"></form></TD></TR></TABLE>');
// -->