var currentlyActiveInputRef=false;var currentlyActiveInputClassName=false;function highlightActiveInput(){if(currentlyActiveInputRef){currentlyActiveInputRef.className=currentlyActiveInputClassName}currentlyActiveInputClassName=this.className;this.className="inputHighlighted";currentlyActiveInputRef=this}function blurActiveInput(){this.className=currentlyActiveInputClassName}function initInputHighlightScript(){var b=["INPUT","TEXTAREA"];for(tagCounter=0;tagCounter<b.length;tagCounter++){var a=document.getElementsByTagName(b[tagCounter]);for(var c=0;c<a.length;c++){if(a[c].className&&a[c].className=="doNotHighlightThisInput"){continue}if(a[c].tagName.toLowerCase()=="textarea"||(a[c].tagName.toLowerCase()=="input"&&a[c].type.toLowerCase()=="text")){a[c].onfocus=highlightActiveInput;a[c].onblur=blurActiveInput}}}};
