// this script prevents email bots from harvesting names
// the third argument is the style of the link

function nobots(penguins, catfish, mousepad)
{
	if(mousepad == null) document.write('<a href="mailto:' + penguins + '@' + catfish + '">' + penguins + '@' + catfish + '</a>');
	else document.write('<a class="' + mousepad + '" href="mailto:' + penguins + '@' + catfish + '">' + penguins + '@' + catfish + '</a>');
};
