//<![CDATA[
function loadDealerLocator() {
    var countrySelect = document.getElementById("country");
    countrySelect.onchange = function() {
        var country = document.getElementById("country").value;
	if(country != 'US' && country != 'CA'){
	    window.location = 'http://www.control4.com/index.php?page=' + country; 
	}

   }
}
function submitDealerLocator() {

    var qAddress = document.getElementById('addressInput').value;
    var qDistance = document.getElementById('distanceSelect').value;
    var qStatus = document.getElementById('dealerstatusSelect').value;
    qAddress = qAddress.replace(new RegExp('[\\" "]', "g" ), "+");    
    window.location = 'http://www.control4.com/dealer-locator/?addr=' + qAddress + '&distance=' + qDistance + '&status=' + qStatus;
}

//]]>