window.LoadEvtMngr = {
	events : [],
	addEvent : function(psEvt) {
		this.events[this.events.length] = psEvt;
	},
	executeAll : function() {
		for (liEvt = 0; liEvt < this.events.length; liEvt ++) {
			eval(this.events[liEvt]);
		}
	}
};
onload = function() {
	window.LoadEvtMngr.executeAll();
};

window.getObj = function(psID) {
	return(document.getElementById ? document.getElementById(psID) : document.all(psID));
};

window.printThisPage = function() {
	if (print) print();
};
