// Base Library
// Bob - DCR Systems
// 1/25/2004
// Obviously this is all IE/Windows;

/////////////////
function use () {
/////////////////
// like a perl use (import code)

var s = "";
var a;
for (var z =0; z<arguments.length; z++) {
   a = arguments[z];
   // pre & postfix as required
   a = "/js/" + a + ".js";
   s += "<script language=\"EcmaScript\" src=\"" + a + "\"><\/script>\n";
}

// add to env
document.write(s);

} // 


