function start(WINDWARD)
//Use the template variable to dissallow the running of unneccessary Javascript
{
	onclick_menu( 'nav_menu' );


	checklinks( 'external', 
				function() {
					this.target = '_blank';
					return confirm('You are now leaving Arapahoe CUs web-site and are going to a web-site that is not operated by the credit union. Arapahoe CU is not responsible for the content or availability of linked sites.  Please be advised that Arapahoe CU does not represent either the third party or you, the member, if you enter into a transaction. Further, the privacy and security policies of the linked site may differ from those practiced by the credit union.  Do you wish to continue?');
				}
		);


}

function menuExtLink(url) {
	if (confirm(externalMessage)) {
	window.open(url,'external','toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes');
	}
}

function checklinks(target, action)
{
	if(top.pieceOfJunk || !document.body.getElementsByTagName || !target || !action) return;
	var kids = document.body.getElementsByTagName('A');
	
	for(var i in kids)
	{
		if(kids[i].nodeName == 'A' && kids[i].target == target)
		{
			kids[i].onclick = action;
		}
	}



}

function display_date() {
	var months=new Array(13);
	months[1]="January";
	months[2]="February";
	months[3]="March";
	months[4]="April";
	months[5]="May";
	months[6]="June";
	months[7]="July";
	months[8]="August";
	months[9]="September";
	months[10]="October";
	months[11]="November";
	months[12]="December";
	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	if (year < 2000)    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
	document.write("" + lmonth + " ");
	document.write(date + ", " + year + "");
}


