// Skriver ut en epost med @-bild
function antiEmailRobot(name, text){	
	domain="kontract.se";
	imgsrc="/img/at.gif";

	if(name=="")
		name="info";

	document.write("<a h" + "ref=" + "mai" + "l" + "t" + "o:" + name + "@" + domain + ">");
	if(text=="")
		document.write(name + "<img valign=absmiddle src=" + imgsrc + " border=0>" + domain);
	else
		document.write(text);
	document.write("<"+"/"+"a>");
}
