function cfhideframe(pframename) {

	if(typeof(pframename).toLowerCase() == "string") {
		switch(pframename.toLowerCase()) {
			case "cfmonitor":
				if(window.top.CFContentFrameset.cols != "6,0,*") {
					//window.top.CFContentFrameset.cols = "0,*";
					window.top.cftoggle.navToggle("close");
				}
		}
	}
	
}

function cfunhideframe(pframename) {

	if(typeof(pframename).toLowerCase() == "string") {
		switch(pframename.toLowerCase()) {
			case "cfmonitor":
				if(window.top.CFContentFrameset.cols == "6,0,*") {
					//window.top.CFContentFrameset.cols = "194,*";
					window.top.cftoggle.navToggle("open");
				}
		}
	}
	
}

