function formHandler(form)
{
  var URL = form
  if (!(URL == "")) 
    {
      document.form.site2.selectedIndex = 0;
//      window.location.href = "default.htm";
      window.open(URL);
    }
}

function ShowStuff()
{
  valbutton(form);
 
  if (mychoice == 'forms')
    {
      document.getElementById('forms').style.display = 'block'; 
    }

  if (mychoice == 'services')
    {
      document.getElementById('forms').style.display = 'none'; 
    }

  if (mychoice == 'directory')
    {
      document.getElementById('forms').style.display = 'none'; 
    }
  
}

function valbutton(thisform) 
{
  myOption = -1;

  for (i=thisform.showchoices.length-1; i > -1; i--) 
  {
    if (thisform.showchoices[i].checked) 
    {
      myOption = i;
      mychoice = thisform.showchoices[myOption].value;
    }
  }
}

function HomeClick()
{
  document.getElementById('home').style.display = 'block';
  document.getElementById('forms').style.display = 'none'; 
}

function FormsClick()
{
  document.getElementById('home').style.display = 'none';
  document.getElementById('forms').style.display = 'block'; 
}

function ServicesClick()
{
  document.getElementById('home').style.display = 'none';
  document.getElementById('forms').style.display = 'none'; 
}

function DirectoryClick()
{
  document.getElementById('home').style.display = 'none';
  document.getElementById('forms').style.display = 'none'; 
}




