function initFootNotes(a){var b=document.getElementsByTagName("span");for(var i=0;i<b.length;i++){var c=b[i].getAttribute("foot:note");if(c){var d=a[c];if(d){b[i].className="FootNote";var e=b[i].getAttribute("foot:sup");var f;if(e){f=document.createElement("sup");f.style.fontSize="smaller"}else f=document.createElement("span");f.innerHTML=c;f.style.textDecoration="underline";f.style.color="#4283BE";b[i].appendChild(f);b[i].onmouseover=onMouseOverFootNote;b[i].onmouseout=onMouseOutFootNote;b[i].title=d}else continue}else continue}}function onMouseOverFootNote(e){e=e||window.event;var a=e.srcElement||e.target;a.style.cursor="pointer"}function onMouseOutFootNote(e){e=e||window.event;var a=e.srcElement||e.target;a.style.cursor="default"}