function on(n)
{
	if (n=='north')	{s1('_north');mapt.innerHTML='Northern Ireland';}
}

function off()
{
	s1('');
	mapt.innerHTML='';
}

function s1(n1) {
	document.images.north.src = "map/north_north" + n1 + ".gif"; }

