function _addEventListener(attachTo, eventType, callbackFunction, useCapture){
	if(attachTo.addEventListener){
		attachTo.addEventListener(eventType, callbackFunction, useCapture);
	}else if (attachTo.attachEvent){
		attachTo.attachEvent('on' + eventType, callbackFunction, useCapture);
	}
}

