<!--
defaultStatus = '';

function On( imgName )
	{
	if ( document.images )  
		document.images[imgName].src = eval(imgName + "on.src");
	}

function Off( imgName ) 
	{
	if ( document.images )
		document.images[imgName].src = eval(imgName + "off.src");
	}

function redirect( pulldown )
	{
	var newLocation = pulldown[pulldown.selectedIndex].value;
	if ( newLocation != "" )
		self.location = newLocation;
	}
function makeLinkTo( form )
   {
   var URL = document.linkForm.select.options[document.linkForm.select.selectedIndex].value;
   window.location.href = URL;  
   }
//-->


