<!--- PASSWORD PROTECTION SCRIPT

function TheLogin() {

var user = '';
var password = 'srxpro';

if (this.document.login.pass.value == password) {
  top.location.href="dealer.html";
}
else {
  location.href="incorrect.html";
  }
}

// End hiding --->