// JavaScript Document
function checkEnter(e){ 
var characterCode
if(e && e.which){ 
e = e
characterCode = e.which 
}
else{
e = event
characterCode = e.keyCode 
}

if(characterCode == 13){ 
var location;
  var password;
  password=this.document.login.inputbox.value
  location=password + ".html"
  document.location.href = location;
return false 
}
else{
return true 
}

}


function resellerlogin() {
  var location;
  var password;
  password=this.document.login.inputbox.value
  location=password + ".html"
  document.location.href = location;

}
