<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function password() {
var testV = 1;
var pass1 = prompt('Please Enter the full password WITHOUT any spaces','');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1 == "togetherin08") {
alert('You Got it Right!');
window.open('http://www.fairmont.pylusd.org/familypages/togetherin08.htm');
break;
} 
testV+=1;
var pass1 = 
prompt('Access Denied - Password Incorrect, Please Try Again.','Password');
}
if (pass1!="password" & testV ==3)               
history.go(-1);
return " ";
}
// End -->