﻿function lde(fld) {
	var s = String(fld.firstChild.data);
	s = s.replace('#','@');
	s = s.replace(/,/g,'.');
	fld.firstChild.data = s;
}

// call at body onload
function ldeAll() {
	var a = GetObjByClass("_lde");
	for (i = 0; i < a.length; i++) {
		lde(a[i]);
	}
}

