/* JavaScript file */
/*
function manage (id, cls1, cls2)
{
	if (document.getElementById)
	{
		var el = document.getElementById (id);
		if (el.className == cls1)
			el.className = cls2;
		else
			el.className = cls1;
	}
	return false;
}*/

function manage (id, cls1, cls2)
{
	if (document.getElementById)
	{
		var el = document.getElementById (id);
		if (el.className == cls1)
			el.className = cls2;
		else
			el.className = cls1;
		for (var i = 3; i<arguments.length; i++)
		{
			if (arguments[i] != '')
			{
				var el = document.getElementById (arguments[i]);
				el.className = cls1;
			}
		}
	}
	return false;
}

function popup (URL) 
{
	aWindow=window.open(URL,"","toolbar=no,width=420,height=400,status=no,scrollbars=no,resize=no,menubars=no");
}