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