
//library functions for the Footer

//the following code must appear on the calling page:

//				<SCRIPT LANGUAGE="Javascript">
//					RenderSiteFooter(gCurrentPageIndex);
//				</SCRIPT>

var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;
var ver4 = (NS4 || IE4) ? 1 : 0;

var serverRoot = "http://www.RPCUL.com/"

//////////////////////////////////////////////////////////////////

//writes necessary HTML to page given a pageindex
function RenderSiteFooter(pageIndex){

	var htmlStr='';

	//show Footer

	htmlStr+= '<font size="2"><a href="Terms.htm" targer="_self"><B>Website User Agreement</B></a></font>';
	
	htmlStr+= '<font size="2"> | <a href="statement.htm" targer="_self"><B>Privacy Statement</B></a></font><br>Copyright Resurrection Credit Union Limited - 2002';
	
	document.write(htmlStr);

}
