// Copy this file to your Includes folder

function checkPassword(){

var password = ''
password=prompt('Please Enter Your Password:','');

if (password != null && password !="") {

// the valid password
if (password == "bandits")

// the URL to load if they enter the correct password
{location.href =  "http://lowerbucksbandits.com/webpages/Schedule-14.asp";}

else
// the URL to load if they enter an incorrect password
{location.href =  "http://lowerbucksbandits.com/webpages/Default.asp";}

}

} // function checkPassword()

function checkPassword2(){

var password = ''
password=prompt('Please Enter Your Password:','');

if (password != null && password !="") {

// the valid password
if (password == "bandits")

// the URL to load if they enter the correct password
{location.href =  "http://lowerbucksbandits.com/webpages/Schedule-12.asp";}

else
// the URL to load if they enter an incorrect password
{location.href =  "http://lowerbucksbandits.com/webpages/Default.asp";}

}

}
