<!--
var nActiveRow=0;
function rowHilite(nRowNum,nObj,nHilite){
	var nHiliteClass="";
	if(nHilite || nRowNum==nActiveRow){ nHiliteClass="listRowActive"; } else { nHiliteClass="listRow"; }
	nObj.className=nHiliteClass;
}
function rowMakeActive(nRowNum,nLinkBottomTo){
	if(nActiveRow){
		eval("nActiveRowObj = document.getElementById('row" + nActiveRow + "')");
		rowHilite(0,nActiveRowObj,0);
	}
	nActiveRow=nRowNum;
	if(nLinkBottomTo){ parent.frmBot.location.href = nLinkBottomTo; }
}
function rowHilite1(nRowNum,nObj,nHilite){
	var nHiliteClass="";
	if(nHilite || nRowNum==nActiveRow){ nHiliteClass="listRowActive1"; } else { nHiliteClass="listRow1"; }
	nObj.className=nHiliteClass;
}
function rowMakeActive1(nRowNum,nLinkBottomTo){
	if(nActiveRow){
		eval("nActiveRowObj = document.getElementById('row" + nActiveRow + "')");
		rowHilite(0,nActiveRowObj,0);
	}
	nActiveRow=nRowNum;
	if(nLinkBottomTo){ parent.frmBot.location.href = nLinkBottomTo; }
}
	var TO,URL;
	function Link(url){
		 URL=url;
		 TO=setTimeout('window.location=URL;',0);
	}
	function Link1(url){
		 URL=url;
		 TO=setTimeout('parent.frmBody.location=URL;',0);
	}	
	function checkall(formname,checkname,thestate){
		var el_collection=eval("document.forms."+formname+"."+checkname)
		for (c=0;c<el_collection.length;c++)
		el_collection[c].checked=thestate
	}

	function GoToPage(url1) {
	    top.midden.linksmidden.location.href = url1;
	}