
// General External links - open in new window

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;



// Added for 'Pay Bills' link - in the header

function toUNP() {

window.open("https://www.e-comunity.ca/unp/UNPFrontControllerServlet?LANG=en&OPCODE=FormInfo&APP_ID=100035&BRAND=site","","width=560,height=650,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=yes");	

return;

}

function CSClickReturn () {
	var bAgent = window.navigator.userAgent; 
	var bAppName = window.navigator.appName;
	
	if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0)) { 
		return true; // dont follow link
	} else {
		return false; // dont follow link
	}
	
}