/*

SpamGuard 1.0, Client Script

Copyright (c) 2010 7IT - all rights reserved
Written by Tonny Lippert

*/
function sg(e) {
	if (!e) return false;
	if (e.srcElement) id=e.srcElement.id;
	else if (e.target) id=e.target.id;
	else return false; e="";
	for (i=3;i<id.length;i+=2) e+=String.fromCharCode((parseInt(id.charAt(i) + id.charAt(i+1), 16) ^ 7) - 7);
	document.getElementById(id).href=e;
	return true;
}
