<!--

// Source: http://www.netlobo.com/div_hiding.html
function toggleLayer(whichLayer) {
 if (document.getElementById) {
  // this is the way the standards work
  var style2 = document.getElementById(whichLayer).style;
  style2.display = style2.display? "":"block";
 }
 else if (document.all) {
  // this is the way old msie versions work
  var style2 = document.all[whichLayer].style;
  style2.display = style2.display? "":"block";
 }
 else if (document.layers) {
  // this is the way nn4 works
  var style2 = document.layers[whichLayer].style;
  style2.display = style2.display? "":"block";
 }
}

function GoToSpot() {
  location=document.gotospot.thespot.options[document.gotospot.thespot.selectedIndex].value
}


//--- Search box
var search_SearchBlock_promptString;
var search_SearchBlock_inputString;

function search_SearchBlock_init(prompt) {
    search_SearchBlock_promptString = prompt;
    search_SearchBlock_inputString = document.search_SearchBlock.searchCriteria;
    document.search_SearchBlock.searchCriteria.value = prompt;
}

function search_SearchBlock_focus() {
    if (document.search_SearchBlock.searchCriteria.value == search_SearchBlock_promptString) {
	document.search_SearchBlock.searchCriteria.value = '';
    }
}
function search_SearchBlock_blur() {
    if (document.search_SearchBlock.searchCriteria.value == '') {
	document.search_SearchBlock.searchCriteria.value = search_SearchBlock_promptString;
    }
}

//-->
