> function scriptInclude(filename) > { > script=document.createElement('script'); > script.src=filename; > script.type='text/javascript'; > document.getElementsByTagName('head')[0].appendChild(script); > } > > scriptInclude('blah.js'); COOLER!