// <script>
// sidepane.js
// Ron Lau 2010
// Copyright Netcast Platform 2010
//
// Created on  : 05/01/2010

function toggle(e)
{
	e = getNextSib(getNextSib(e));
	if(e)
		e.style.display = (e.style.display == 'none' ? '' : 'none');
}

function gotoCat(n)
{
	document.location.href='cata.php?c='+n;
}

// </script>
