//Functions to show instructions on office locator

window.onload=instruct_country;	

function instruct_country(){
	document.getElementById("city_menu").style.display = "none";
	document.getElementById("city_block_off").style.display = "inline";
	document.getElementById("city_block_off").innerHTML="Please select a region.";
	
	document.getElementById("address_block").style.display = "none";
	document.getElementById("address_block_off").style.display = "none";
}	 

function instruct_city(){
	document.getElementById("city_block_off").style.display = "none";
	document.getElementById("city_menu").style.display = "inline";
	
	document.getElementById("address_block").style.display = "none";
	document.getElementById("address_block_off").style.display = "inline";
	document.getElementById("address_block_off").innerHTML="Please select a city or another region.";
}

function instruct_city_off(){
	document.getElementById("address_block_off").style.display = "none";
	document.getElementById("address_block").style.display = "inline";
}

