function eDecode(theStr){
	var modified = theStr.replace(/\<tr>/gi, "@");
	return modified.replace(/\<td>/gi, ".");
}