/*
#VERSION_HISTORY_START

V1.00 - 19/07/10 AC
- new javascript library for display based operations

#VERSION_HISTORY_END
*/

// adds an event (cross browser
function AddBrowserEvent(eventName, eventFunction) {
	if (window.addEventListener) { // non-ie
		window.addEventListener(eventName.replace('on', ''), eventFunction, false);
	} else if (window.attachEvent) { // ie
		window.attachEvent(eventName, eventFunction);
	}
}



