function change(o,v){
	if (navigator.userAgent.indexOf("Firefox") > -1) {
		o.textContent = v;
	}else{
		o.innerText = v;
	}
}
