function contactInsertSpot(divID,classStyle,text)
{
	var stuff = "xppnksattkickpuntdottcompps";
	var stuff = stuff.replace("xpp","");
	var stuff = stuff.replace("att","@");
	var stuff = stuff.replace("dott",".");
	var stuff = stuff.replace("pps","");
	
	if (text)
	{
		anchorText = text;
	}
	else
	{
		anchorText = stuff;
	}
	
	if (classStyle == "white")
	{
		addClass = ' class="linkWht12"';
	}
	else
	{
		addClass = '';
	}
	
	return document.getElementById(divID).innerHTML = '<a href="mailto:' + stuff + '" rel="nofollow"' + addClass + '>' + anchorText + '</a>';
}
