﻿function CloseLaw() {
	$("#lawContainer").hide();
	$("#mainContainer").show();

	$("#lawDescrContainer iframe").attr("src", "about:blank");
}

function GetLaw(idLaw, bIsCategory) {
	if (bIsCategory == false) {
		$("#lawContainer").show();
		$("#mainContainer").hide();

		$("#lawDescrContainer iframe").attr("src","Controls/Portal/LawView.aspx?id=" + idLaw);
	}
}
