// 2b's JavaScript utilities
// $Id: 2butils.js 688 2006-11-29 23:06:34Z bb $
// Include a JS file from within other JS code
function include(file) {
var script = document.createElement('script');
script.src = file;
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
}
// Add an onload function to the current page
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}