function toggleSideMenuCategories(obj, active) 
{
	var objChild = obj.getElementsByTagName('UL');
	if (active == 1)
	{
		obj.className='over';
		if (objChild[0]) objChild[0].style.display = "block";
	}
	else
	{
		obj.className='';
		if (objChild[0]) objChild[0].style.display = "none";
	}
}

function toggleTopMenu(obj, active) 
{
	var objChild = obj.getElementsByTagName('UL');
	if (active == 1) {
		obj.className='over';
		if (objChild[0]) objChild[0].style.visibility = "visible";
	} else {
		obj.className='';
		if (objChild[0]) objChild[0].style.visibility = "hidden";
	}
}

function NewWin(url)
{
	window.open(url,'_blank','resizable=yes,menubar=yes,scrollbars=yes,width=800,height=800,screenY=40,screenX=40,top=40,left=40');
}
