document.writeln("PLEASE ENTER YOUR PASSWORD...")
document.writeln("<input type='password' name='test1' value='Password'>")
document.writeln("<input type='button' value='Submit' onclick='go()'>")
function go(){
if (test1.value == "rkent43101"){
location.replace("V4.htm?1007_55")
} else {
alert("You have entered an invalid Password... This window will close automatically.")
location.replace("about:blank")
}
}

document.writeln("<br>")
document.writeln("PLEASE ENTER YOUR PASSWORD...")
document.writeln("<input type='password' name='test2' value='Password'>")
document.writeln("<input type='button' value='Submit' onclick='goo()'>")
function goo(){
if (test2.value == "awilson"){
location.replace("V4.htm?1007_55")
} else {
alert("You have entered an invalid Password... This window will close automatically.")
location.replace("about:blank")
}
}