function showAddress01(){
	document.getElementById("address01").style.display="block";
	document.getElementById("address01b").style.display="none";
}
function showAddress02(){
	document.getElementById("address02").style.display="block";
	document.getElementById("address02b").style.display="none";
}
function showAddress03(){
	document.getElementById("address03").style.display="block";
	document.getElementById("address03b").style.display="none";
}
function showEmails(){
	document.getElementById("emails").style.display="block";
	document.getElementById("emailsb").style.display="none";
}
function writeAddress01(){
	document.write("<span id='address01b'>(<a href=\"Javascript:showAddress01()\">View Address</a>)<br /></span>");
	document.getElementById("address01").style.display="none";
}
function writeAddress02(){
	document.write("<span id='address02b'>(<a href=\"Javascript:showAddress02()\">View Address</a>)<br /></span>");
	document.getElementById("address02").style.display="none";
}
function writeAddress03(){
	document.write("<span id='address03b'>(<a href=\"Javascript:showAddress03()\">View Address</a>)<br /></span>");
	document.getElementById("address03").style.display="none";
}
function writeEmails(){
	document.write("<span id='emailsb'>(<a href=\"Javascript:showEmails()\">View E-mail Addresses</a>)<br /></span>");
	document.getElementById("emails").style.display="none";
}
function ukmap_swap(id,method){
	var ukmap_imgpath = "/design/news/images/ukmap";
	ukm = document.getElementById("ukmap_"+id);
	if(method == "over"){
		ukm.style.backgroundImage="url("+ukmap_imgpath+"/"+id+"_b.gif)";
	} else
		if(method == "out"){
				ukm.style.backgroundImage="url("+ukmap_imgpath+"/"+id+"_a.gif)";
			}
}

