// Ejemplo addEvent(window,"load",inicioBT);
function addEvent(o,e,f){
	if(o.addEventListener){
		o.addEventListener(e,f,true);
		return true;
	}else {
		if(o.attachEvent) return o.attachEvent("on"+e,f);
		else return false;
	}
}
