function onloadFunctions(feature){ 
	
if (feature=='PDF-both' || feature=='PDF-footnote') {		
	/* ****************************************
		Below: Adapted from http://www.brucelawson.co.uk/index.php/2005/opening-links-in-new-windows-in-xhtml-strict/#comment-376
	**************************************** */
		if (!document.getElementsByTagName) return; 
			var anchors = document.getElementsByTagName("A");
			for (var i=0; i<anchors.length; i++) {
					var docLink = anchors[i];
					var urlString = docLink.getAttribute("href");
					
					// if href has .pdf in it, do the following
					if (urlString!=null && urlString.indexOf('.pdf')!=-1) {
						if (feature=='PDF-both') {
							docLink.target = "_blank";
							docLink.innerHTML = docLink.innerHTML + "&nbsp;PDF*&nbsp;(opens in new window)";
							}
						if (feature=='PDF-footnote') {
							docLink.target = "_blank";
						}				
					}
				}	
				
	/* ****************************************
	 Above: Adapted from http://www.brucelawson.co.uk/index.php/2005/opening-links-in-new-windows-in-xhtml-strict/#comment-376
	**************************************** */		
	}



/* END function */
}
