<!--

   function nameIt() {
      window.name = 'hssmain';
   }

   function pop_me_up2(pURL,name,features){
      new_window = window.open(pURL,name,features);
      new_window.focus(); 
   }

   function changeImage(image_name,image_src) {
         document.images[image_name].src = image_src;
   }

   function goToURL(obj){
      var f = (obj.section) ? obj : obj.form;
      var selected = f.section.selectedIndex;
      var URL = f.section.options[selected].value;
      if (URL != "") document.location = URL;
      return false;
   }

   if (window.self != window.top) {
      top.location.replace(window.location.href);
   }

//-->

