function manchor(element, usr, address, onoff)
{
	// takes a mailto and fumbles around with it
	// to put spambots in an other direction
	
	if ( onoff )
	{
		element.href="mailto:"+usr+"@"+address;
		element.innerHTML = usr + "@" + address;
	}
	else
	{
		element.href="";
		element.innerHTML = usr + " " + address;
	}
	
	
	//alert('new html: '+innerHTML);
}