<!-- hide from non-JavaScript browsers    
// Netscape 3.0 compatibility test (for javascript image swapping)
compat = false;
if( parseInt( navigator.appVersion ) >= 3 ) { compat = true; }
// cache images for quick swapping
if( compat )
{

arrowon = new Image;
arrowon.src = "/images/arrow_white.gif";
arrowoff = new Image;
arrowoff.src = "/images/dot.gif";

aroon = new Image;
aroon.src = "/images/aro_red.gif";
arooff = new Image;
arooff.src = "/images/dot.gif";

bluon = new Image;
bluon.src = "/images/aro_blu.gif";
bluoff = new Image;
bluoff.src = "/images/dot.gif";

}

// generic image swap function
function doSwapGen(x, y)
{
   if( compat ) { 
    document.images[x].src=eval(y+'.src'); 
   }
}

function key(){
	//alert ("hey! focus");
	document.f.k.focus()
}

function getThereFast(formID,dropdownID) { 
	var selectedLink = document[formID][dropdownID].options[document[formID][dropdownID].selectedIndex].value;
 	if (selectedLink != '#') {
    	window.location=document[formID][dropdownID].options[document[formID][dropdownID].selectedIndex].value;
	} else if (selectedLink == '#') {
		document[formID][dropdownID].selectedIndex = 0;
	}
}

function clear_keyword()
{
	// Get access to the field
	var kid = document.f.kid;

	// If the default value is still in there, clear it
	if (kid.value == kid.defaultValue)
		kid.value = "";
}

function blur_keyword()
{
	// Get access to the field
	var kid = document.f.kid;
	
	// If there hasn't been a value entered, return to default
	if (kid.value == "")
		kid.value = kid.defaultValue;
}

// -->
