<!--

// original code by Bill Trefzger 12/12/96

function go(){

if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {

location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value

 }

}



if (document.images) {

  image1on = new Image();

  image1on.src="images/b_calendar_x.gif";



  image2on = new Image();

  image2on.src="images/b_mailing_x.gif";



  image3on = new Image();

  image3on.src="images/b_email_x.gif";
  
  
  image4on = new Image();

  image4on.src="images/b_home_x.gif";
  


  
  image1off = new Image();

  image1off.src="images/b_calendar.gif";



  image2off = new Image();

  image2off.src="images/b_mailing.gif";


  image3off = new Image();

  image3off.src="images/b_email.gif";


  
  
  image4off = new Image();

  image4off.src="images/b_home.gif";
  
  
  

  
  
 

}





function turnOn(imageName) {

  if (document.images) {

    document[imageName].src=eval(imageName + "on.src");

  }

}



function turnOff(imageName) {

  if (document.images) {

    document[imageName].src=eval(imageName + "off.src");

  }

}

// -->

