/*
 locality support
 Kell Gatherer June 2010
*/

function locPop(id)
{
 document.getElementById(id).style.visibility = 'visible';
}

function locHidePop(id)
{
 document.getElementById(id).style.visibility = 'hidden';
}

