<!-- 
//Begin
function addEffect(oWhich)
{
	oWhich.style.filter="glow(color=#ffcc66, strength=2)";
	oWhich.style.cursor="hand"
}

function removeEffect(oWhich)
{
	oWhich.style.filter=" ";
	oWhich.style.cursor="default"
}

function addTxtEff(oWhich)
{
	oWhich.style.cursor="hand"
}

function removeTxtEff(oWhich)
{
	oWhich.style.cursor="default"
}

function eff_click(dest)
{
	var url;
	url = dest;

	document.location = url;
}
//End
-->