/* LISTNER FUNCTIONS */
function removeObjEvent(o,t,c){
	if (o.removeEventListener) {
		o.removeEventListener(t, c, false);
	} else if (o.detachEvent) {
		o.detachEvent("on" + t, c, false);
	}
}
function addObjEvent(o,t,c){
	if (o.addEventListener) {
		o.addEventListener(t, c, false);
	} else if (o.attachEvent) {
		o.attachEvent("on" + t, c, false);
	}
}