if(document.images){
	hidetoc = new Image();
	showtoc = new Image();
	
	hidetoc.src ="../images/hidetoc_dn.gif";
	showtoc.src ="../images/showtoc_up.gif";
}

function showAmendmentsPane(CapID) {
	parent.frames[2].location.href = "../klr_app/amendments.php?CapID=" + CapID;
	parent.document.body.rows = '27,*,25';
}

function HideAmendmentsPane() {
	parent.document.body.rows = '27,*,0';
}

function showHideToc() {
	if (document.images["toc"].src == hidetoc.src) {
		document.images["toc"].src = showtoc.src;
		document.images["toc"].title = "Show the amendments panel.";
		parent.document.body.rows = '27,*,25';

	} else {
		document.images["toc"].src = hidetoc.src;
		document.images["toc"].title = "Hide the amendments panel.";
		parent.document.body.rows = '27,*,50%';
	}
}