// JavaScript Document

function passWord() {
var testV = 1;
var pass1 = prompt('If you are interested in booking the band and have been given a password to download our press kit, please enter it now',' ');
while (testV < 3) {
if (!pass1)
history.go(-1);
if (pass1.toLowerCase() == "july" || pass1.toLowerCase() == "booktheband") {
window.open('http://www.davideaston.com/media/epk/DEB_epk.zip');
break;
}
testV+=1;
var pass1 =
prompt('Sorry, that was not correct. Please try again.','');
}
if (pass1.toLowerCase()!="password" & testV ==3)
history.go(-1);
return " ";
}

//