// JavaScript Document
<!--
function hlight(me) { 
	if (me.value != "") { 
		me.select(); 
	} 
} 

//Craig
function openWin(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function alterCate(elm, onoff)
{
	if (typeof(onoff) == "undefined" )
	{
		onoff = "blur";
	}

	if (!elm.base)
	{
		elm.base = elm.value;
	}

	if (elm.value == elm.base && onoff != "blur")
	{
		elm.value = "";
	}
	else if (elm.value == "" && onoff == "blur")
	{
		elm.value = elm.base;
	}
}
//-->