function GoToURL(j) {
window.status=('Searching...')
var hyphen = "+";
var firstURL = document.mobilesearch.make.value;
var secondURL = document.mobilesearch.model.value;

var cleanURL;
var cleanURL2;


cleanURL = firstURL.replace(/ /g, hyphen);
cleanURL2 = secondURL.replace(/ /g, hyphen);


if(cleanURL == ""){
	cleanURL = "anymake";
}

if(cleanURL2 == ""){
	cleanURL2 = "anymodel";
}


var location=("/contract/" + cleanURL + "/" + cleanURL2 + ".html");
this.location.href = location;
window.status=('Searching for ' + cleanURL + '...');

}
