function showLoc(which)
{
	//alert('It is: ' + which);
	var locArray = document.getElementById("loc").getElementsByTagName("DIV");

	for (i=0;i<locArray.length;i++)
	{
		if (locArray[i].className != undefined && locArray[i].className == "location_details")
			locArray[i].style.display = "none";
		else if (locArray[i].className != undefined && locArray[i].className == "content")
			locArray[i].style.display = "none";
	}
	
	if (document.getElementById(which))
		document.getElementById(which).style.display = "block";
}

function contactCountry(){
	//alert("OK Let's go!");
	selectedOption = document.getElementById("contact_country").selectedIndex;
	selectedValue = document.getElementById("contact_country").options[selectedOption].value;
	locToShow = "loc_" + selectedValue;
	
	selectedValue = parseInt(selectedValue);
	//alert(selectedValue);
	showLoc(locToShow);
}

