//<!--

function fnShowText (strElementID)
{
	document.getElementById(strElementID).style.visibility = "";
}

function fnHideText (strElementID)
{
	document.getElementById(strElementID).style.visibility = "hidden";
}

function fnInitiateMap()
{
	//get rid of alt text as it may overlap the fake alt text
	document.getElementById('Scotland').alt = "";
	document.getElementById('NorthEastArea').alt = "";
	document.getElementById('LocationMap').alt = "";
	fnHideText('Scotland');
	fnHideText('NorthEast');
}

//-->