Use AJAX to Auto Include a Javascript File / Function
An XMLHTTP request has the capability to completely stall any script
activity.
A function to return a cross-browser XMLHTTP Object:
function getXMLHttpObj(){
if(typeof(XMLHttpRequest)!='undefined')
return new XMLHttpRequest();
var axO=['Msxml2.XMLHTTP.6.0', 'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0', 'Msxml2.XMLHTTP', 'Microsoft.XMLHTTP'], i;
for(i=0;i