function loadForums(cList,nList)
{
	var params;
	var currentList=document.getElementById(cList);
	var nextList;
	if(nList!=null)
	{
		nextList=document.getElementById(nList);
		for(i=nextList.options.length;i>=0;i--)
		{
			nextList.remove(i);
		}
		var op=document.createElement("option");
		op.value=0;
		op.text="²»ÏÞ";
		nextList.options.add(op);
		var fid=currentList.options[currentList.selectedIndex].value;
		if(fid==0)
		{
			return;
		}
		params="/loadForums.aspx?fid="+fid;
	}
	else
	{
		params="/loadForums.aspx";
	}
	var xmlhttp=ajax();
	xmlhttp.open("GET",params,false);
	xmlhttp.send(null);
	var cats=xmlhttp.responseText.split("&sep;");
	for(var i=0;i<cats.length-1;i++)
	{
		var newOption=document.createElement("option");
		newOption.value=cats[i].substring(0,cats[i].indexOf("<"));
		newOption.text=cats[i].substring(cats[i].indexOf("<")+1);
		if(nList==null)
		{
			currentList.options.add(newOption);
		}
		else
		{
			nextList.options.add(newOption);	
		}
	}
}