<!--  // Image Switcher

function showSec (whichpic) {
if (document.getElementById) {
document.getElementById('sectors').src = whichpic.href;
  if (whichpic.title) {
   document.getElementById('prompt').childNodes[0].nodeValue = whichpic.title;
  } else {
   document.getElementById('prompt').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}


function resetSec (prompText) {
origText = "Which Sector are you in?";
if (document.getElementById) {
  if (prompText.title) {
   document.getElementById('prompt').childNodes[0].nodeValue = origText;
  } else {
   document.getElementById('prompt').childNodes[0].nodeValue = origText.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}
