<!--

function changeOpenFunction()
{
   var original_window_open = window.open;
   function new_open_function(url, name, features, replace)
   {
      if(name != "TripodPopup")
         return original_window_open(url, name, features, replace);
   }
   window.open = new_open_function;
}
var bName = navigator.appName;

if(bName != "Netscape")
   changeOpenFunction();

// -->

<!--End inserted JavaScript code.--><!--Place this script in the HEAD section.-->

function changePage()
{
   var f = document.forms.navigation;

   var uri = f.pages.options[f.pages.selectedIndex].value;
   newPage =
// These settings describe the pop-up browser
// window - you can edit them.
window.open(uri,"NewPage","height=480,width=640,location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=yes,status=yes");

   }

<!--Place this script in the HEAD section.-->


<!--
// You may edit the message within the
// quotation marks.

function startScroller()
{
   document.scrollForm.scrolling_message.value = msg
   msg = msg.substring(1, msg.length) + msg.substring(0, 1)
// This editable setting dictates how quickly
// each character moves across the scroll box
// (ex. 150=.15 seconds).
   setTimeout("startScroller()", 250)

}
//-->




