function TheLogin() {

var password = 'profits';

if (this.document.login.pass.value == password) {
  top.location.href="ipi/ipi.html";
}
else {
  location.href="home.html";
  }
}


