Work for American Retrieval
American Retrieval routinely hires for various positions, including customer service representatives and other administrative roles.
Send us your resume and we’ll get back to you if you are a good fit.
function preValidate() {
var url="/portal/login.action";
var login = document.getElementById("name").value;
var password = document.getElementById("password").value;
var preValidateUser = "true";
var data = {"login": login,
"password":password,
"preValidateUser": preValidateUser};
jQuery.post(url, data, function(response) {
if(response == "SUCCESS") {
document.getElementById("preValidateUser").value="login";
document.getElementById("login").submit();
}
else {
console.log(response);
document.getElementById("errorList").style.display="";
document.getElementById("errorval").innerHTML=response;
return false;
}
});
return false;
}