// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// ++    FOOTER LINKS SECTION                                                                         ++  
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

// +++++++++++++++++++++++++++++++++++++++
// constructor function for footer link
// +++++++++++++++++++++++++++++++++++++++
	function loFooterLink(displayText, targetURL, statusText, targetWindow) {
		this.display = displayText;
		this.url = targetURL;
		this.statusline = statusText;
		if (targetWindow) {
			this.target = target;
		} else {
			this.target = '_top';
		}
	}


// +++++++++++++++++++++++++++++++++++++++
// Returns HTML code for footer links
// +++++++++++++++++++++++++++++++++++++++
function showFooterLinks() {
	var list = new Array();
	var count = 0;
	var lsFooterLinks = '';
	
// Contacts
count++
list[count] = new loTopLink("Contacts", 
							"javascript:detach('atnlookandfeel/contacts.htm','550','545','text=contact')", 
							"Contacts");

// affiliates
count++
list[count] = new loTopLink("Affiliates", 
							"javascript:detach('atnlookandfeel/affiliates.htm','500','545','text=contact')", 
							"Contacts");

// Privacy Statement
count++
list[count] = new loFooterLink("Privacy Statement", 
							"javascript:detach('atnlookandfeel/privacy.htm', '500', '545', 'text=privacy')", 
							"Privacy Statement");

// Terms of Use
count++
list[count] = new loFooterLink("Terms of Use", 
							"javascript:detach('atnlookandfeel/terms.htm', '500', '545', 'text=terms')", 
							"Terms of Use");

	
	// properties for the list object are 'display', 'url', 'statusline' and 'target'
	for (i=1; i <= count; i++) {
				if (i == count) {
			lsVBar = '&nbsp;';
		} else {
			lsVBar = '<font color="#FFFFFF" size="-1" >|</font>&nbsp;';
		}
		lsFooterLinks += '<a href="' + list[i].url + '" class="footer" onMouseOver="return showStatus(\'' + list[i].statusline + '\')">' + list[i].display + '</a>&nbsp;' + lsVBar;
	}		
	return lsFooterLinks;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
