Please can someone explain what this is and what it is used for ? I can see it is some sort of javascript file.
Is it loaded each time someone visits the site ?
Is it loaded each time someone visits the site ?
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"> <!-- /*********************************************************************** * * ACT_DropListBox - returns a string containing the HTML for the SELECT listbox * ************************************************************************/ function ACT_DropListBox(ar) { var strIDs = '<SELECT SIZE="1" NAME="ACT_droplstbox" onChange="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)">' var sel = " SELECTED" strIDs += '<OPTION ' + sel + ' VALUE="">Select a Section</OPTION>' for (var i=1;i<=ar.length;i++) { if (ar[i].sURL !=null) { strIDs += '<OPTION VALUE="' + ar[i].sURL + '&ACTINIC_REFERRER=' + escape(location.href) + '&NOCLEARFRAMES=1">' + ar[i].sName + '</OPTION>' } } strIDs+='</SELECT>' return strIDs } //--> </SCRIPT> <!--@act NETQUOTEVAR:TOPLEVELSECTIONS_RAW -->
Comment