function documentAll()
{
	if (!document.all)
		document.all = document.getElementsByTagName("*");
}

function loadCategory(lngCategoryID, strAnchor, blnNewWindow)
{
	var strExtra = "";
	if (strAnchor)
		strExtra = "#" + strAnchor;

	if (blnNewWindow)
	{
		var height = screen.availHeight * 0.8;
		var width = screen.availWidth * 0.8;
		window.open("main.asp?id=" + lngCategoryID + strExtra, "", "top=" + (screen.availHeight-height)/2 + ",left=" + (screen.availWidth-width)/2 + ",height=" + height + ",width=" + width + ",resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,menubar=no,status=no");
	}
	else
	{
		if (top.name == "mainfs")
		{
			switch (window.name)
			{
			case "header":
				// frmaes["menu"]
				top.frames[1].location.search = "?id=" + lngCategoryID + strExtra;
				break;
			default:
				// frames["content"]
				top.frames[2].location.href = "main.asp?id=" + lngCategoryID + strExtra;
				break;
			}
		}
		else
			location.href = "mainfs.asp?id=" + lngCategoryID + strExtra;
	}
}

