Array.prototype.findIndex = function(value){
	var ctr = "";
	for (var i=0; i < this.length; i++) {
		// use === to check for Matches. ie., identical (===), ;
		if (this[i] == value) {
			return i;
		}
	}
	return ctr;
};
function setVals() {
	document.getElementById('lat').value = latsarray[titlearray.findIndex(document.getElementById('tb').value)];
	document.getElementById('lon').value = lonsarray[titlearray.findIndex(document.getElementById('tb').value)];
	if (titlearray.findIndex(document.getElementById('tb').value)) {
		document.getElementById('autoForm').action = "results.shtml";
	}
	else {
		document.getElementById('autoForm').action = "index.html";
		alert('That hotel is not in our system...');
	}
};
