// JavaScript Document
var stateheight = 362;
var countryheight = 362;


function changeState() {		
	
	// CANADA --------------------------------------------------------------------
	if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "Alberta") {
		document.getElementById("statelink").href = "dealers/alberta.html";
		stateheight = 362;
	}
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "Ontario") {
		document.getElementById("statelink").href = "dealers/ontario.html";
		stateheight = 362;
	}
	
	// USA	-----------------------------------------------------------------------
	
	
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "Arizona") {
		document.getElementById("statelink").href = "dealers/arizona.html";
		stateheight = 435;
	}
	
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "California") {
		document.getElementById("statelink").href = "dealers/california.html";
		stateheight = 362;
	}
	
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "Florida") {
		document.getElementById("statelink").href = "dealers/florida.html";
		stateheight = 575;
	}
	
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "North Carolina") {
		document.getElementById("statelink").href = "dealers/northcarolina.html";
		stateheight = 435;
	}
	
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "Georgia") {
		document.getElementById("statelink").href = "dealers/georgia.html";
		stateheight = 362;
	}
		
	else if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value == "Massachusetts") {
		document.getElementById("statelink").href = "dealers/massachusetts.html";
		stateheight = 362;
	}	
	
	// STATES/PROVINCES THAT DON'T HAVE ANY DEALERS --------------------------------
	else {
		//popup = window.open ("dealers/unavailable.html","mywindow","status=1,width=362,height=362");
		document.getElementById("statelink").href = "dealers/unavailable.html";
		stateheight = 362;
	}
}

function changeCountry() {
	if (document.getElementById("country").options[document.getElementById("country").selectedIndex].value == "United Kingdom") {
		document.getElementById("countrylink").href = "dealers/uk.html";
		countryheight = 435;
	}
	else if (document.getElementById("country").options[document.getElementById("country").selectedIndex].value == "Australia") {
		document.getElementById("countrylink").href = "dealers/australia.html";
		countryheight = 362;
	}
	
	// COUNTRIES THAT DON'T HAVE ANY DEALERS ---------------------------------------
	else {
		document.getElementById("countrylink").href = "dealers/unavailable.html";
		countryheight = 362;
	}
}