
//library functions for the left Quick Links bar

//the following code must appear on the calling page:

//				<SCRIPT LANGUAGE="Javascript">
//					RenderLeftNav(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 RenderLeftNav(pageIndex){

	var htmlStr='';

	htmlStr+= '<a href="https://www.rpcul-ibank.com" target="_blank"><img src="images/link_internet_banking.gif" width="113" height="43" border="0"></a><br>';
	htmlStr+= '<a href="Loan_Application.htm" target="_self"><img src="images/link_internet_banking_demo.gif" width="113" height="43" border="0"></a><br>';
	htmlStr+= '<a href="Online_Loan.htm" target="_self"><img src="images/link_student_app.gif" width="113" height="43" border="0"></a><br>';
	htmlStr+= '<a href="ATM-Directory-Reference-Guide-for-Students-September-09-update.pdf" target="_blasnk"><img src="images/link_ATM.gif" width="113" height="43" border="0"></a><br>';
	htmlStr+= '<a href="Specials.htm" target="_self"><img src="images/link_spec_promo.gif" width="113" height="43" border="0"></a><br>'; 
	htmlStr+= '<center><a href="http://lifeeventsplanner.cuis.com/lep/index.jsp?CUID=10003435" target="_blank"><img src="images/link_lep_new.jpg" border="0"></a></center><br>';
	htmlStr+= '<a href="http://www.quicktaxweb.ca" target="_blank"><img src="images/link_quicktax_web.gif" border="0"></a><br>';
	htmlStr+= '<a href="https://www.econsumer.equifax.ca/ca/main?link=RESURR&lang=en" target="_blank"><img src="images/equifax.gif" border="0"></a><br>';
	htmlStr+= '<a href="http://services.cumis.com/utilities/getcontent/GetContent.aspx?pageID=15265" target="_blank"><img src="images/InsureLinkD_HA.jpg" border="0" ></a><br>';
	
	document.write(htmlStr);

}