function search_but() {

	var mobilebrand = document.getElementById('BrandSelect').value;

	if(mobilebrand == "Other") {

		window.location = "find_install_link.php?Brand=Other&Model=Other"

	} else {

		var page="find_install.php?Search=model"
		var searchbrand = "&Brand=";

		window.location = page + searchbrand + mobilebrand;

	}
}

function back_but() {

	window.location = "find_install.php";

}
