// JavaScript Documentfunction TheLogin() {var username = 'tommy';var password = 'poppy';if (this.document.login.usr.value == username && this.document.login.pass.value == password) {  top.location.href="birdClubNews.html";} else {  location.href="incorrect.html";  }}
