<!--

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;
	}
}

function Pop(url) {

	window.open(url, "Pop", "left="+windowX+",top="+windowY+",width=420,height=300,top=50,left=50,scrollbars=no,resize=no");

}


// -->

