//ria.js

function encObj(o) {
	r = []
	for(i in o) {
		r.push ( encodeURIComponent(i) + '=' + encodeURIComponent(o[i]))
	}
	return r.join('&')
}


function antispam(host, user) {
	document.write('<a href="mailto:' + user + '@' + host + '">' + user + '@' + host + '</a>');
}


