function openNewAct(strActInfo, winNum)
{
	var winName = "win" + winNum
	window.open("", winName, "width=948, height=689, directories=0, location=0, menubar=0, scrollbars=0, status=0, toolbar=0, resizable=0");
	document.actForm.target = winName;
	document.actForm.actInfo.value = strActInfo;
	document.actForm.method = "POST";
	document.actForm.action = "viewdocument.asp";
	document.actForm.encoding = "application/x-www-form-urlencoded";
	document.actForm.submit();
}

function openLawDoc(lawInfo)
{
	window.open("../inc/lawdoc/html/" + lawInfo + ".htm", "lawdoc", "width=948, height=689, directories=0, location=0, menubar=0, scrollbars=0, status=0, toolbar=0, resizable=0")
}

function checkAnchor()
{
	var parentURL = escape(parent.location);
	var mainURL = escape(parent.main.location)
	if (parentURL.indexOf("%23") >= 0)
	{
		parent.main.location = unescape(mainURL + parentURL.substring(parentURL.indexOf("%23"), parentURL.length));
	}
}

