function setDataById( id, text ) {
	var e = document.getElementById(id);
	if( e ) {
		e.firstChild.data = text;
	}
}
