// Use this to add more than one onLoad event to a page
// http://www.scottandrew.com/weblog/articles/cbs-events

// This isn't going to work on IE 5 Mac... TODO: Hummel will look at this one.

function addEvent(obj, evType, fn, useCapture){
	if (obj.addEventListener){
		obj.addEventListener(evType, fn, useCapture);
		return true;
		alert(obj.EventListener);
	} else if (obj.attachEvent){
		var r = obj.attachEvent("on"+evType, fn);
		return r;
	} else {
		alert("Handler could not be attached");
	}
 }