//
// nbsp fillers to indent each section
//
function filler()
{
  return('&nbsp;&nbsp;&nbsp;&nbsp;');
}


//function changeLayer(poplist_object)
function changeLayer()
{

  if (nn4) {  // dumb NN4
    lay2=findNNlayer('PoplistTag', document);
    var poplist_value=lay2.document.poplistform.choices.options[lay2.document.poplistform.choices.options.selectedIndex].value;
  }
  else {  // even dumber IE4
    var poplist_value=poplistform.choices.value;
  }
  
  if (poplist_value != null && poplist_value !='')
  {
    //alert('poplist changed! value is >'+poplist_value+'<');
    location.href=poplist_value+"?page="+poplist_value;
  } // do we have a URL to go to?

} // end function 


document.write('<div id="PoplistTag">');
document.write('<div align="center">');
document.write('<form name="poplistform">');
document.write('<select name="choices" size="1" onchange="changeLayer()">');
//
//LIST OPTIONS
//
document.write('<option value="tourism_towns.php">Regional Towns</option>');
document.write('<option value="tourism_buildings_and_gardens.php">Buildings & Gardens</option>');
document.write('<option value="tourism_countryside_and_walks.php">Countryside & Walks</option>');
document.write('<option value="tourism_special_interest.php">Special Attractions</option>');
document.write('<option value="tourism_museums.php">Museums & Collections</option>');
//
document.write('</select></form></div>');
document.write('</div>');


