/* Copyright (c) 2004 by Nuno Miguel Gil Fonseca (ngil <at> flordeutopia <dot> pt)
*  You can use this code as long as you credit me.
*/
function spamKiller(ml){
	var eml = "";
	for(var i = ml.length-1; i >= 0; i--) {
		if (ml.charAt(i) == '$') eml = eml + '@'
		else if (ml.charAt(i) == '&') eml = eml + '.'
		else eml = eml + ml.charAt(i)
	}
	return eml
}

