<!--

// 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";



  image3on = new Image();

  image3on.src="images/b_contact_x.gif";
  
  
  image2on = new Image();

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

 
 
  
  

  
  
   
  image1off = new Image();

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





  image3off = new Image();

  image3off.src="images/b_contact.gif";
  
  
  image2off = new Image();

  image2off.src="images/b_realestate.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");

  }

}

// -->