<!--
	function setPointer(theRow, thePointerColor)
	{
		if (thePointerColor == '' || typeof(theRow.style) == 'undefined')
		{
			return false;
		}
		theRow.style.backgroundColor = thePointerColor;
		return true;
	}

	function jump()
	{
		for(i=0;i < document.menu.site.length;i++)
		{
			if(document.menu.site.options[i].selected == true)
			{
				loc = document.menu.site.options[i].value;
				query = document.menu.query.value;
				document.location.href="?pid=" + loc + query;
			}
		}
	}
//-->
