<!--

function showFeedback()
{
fbwindow = window.open ("/feedback.htm?" + encodeURI(document.title), "","width=565,height=460");
fbwindow.moveTo(200,200);
}

function goBack()
{
var s = document.location.href;
var iStart = s.lastIndexOf('?') + 1;
var sCaller = s.substr(iStart, s.length);
//alert(sCaller);
if (sCaller == 'map')
	document.location.href = '/maps/scotland_map.htm';
else
	document.location.href = 'index.html';
}

function showPopup(xRef)
{
fbwindow = window.open ("/" + xRef, "","width=650,height=50");
fbwindow.moveTo(200,200);
}

-->