<!-- Copyright Relaxing Journeys Ltd 2005/8 -->
function Go(){return}

var divs = {
'NorthIsland' : 'NorthIsland',
'SouthIsland' : 'SouthIsland'
}

function showhide(obj)
{
var el, v = obj.options[obj.selectedIndex].value;
for (var opt in divs)
if (el = document.getElementById(divs[opt]))
	el.style.display = (opt != v) ? 'none' : '';
}

window.onload = function()
{
document.getElementById('options').onchange();
}

