/*  JS Javascript File - Constables v2.0
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
*/

function noSpamEmail(addressARG, domainARG,labelARG, classARG)
{
	if (labelARG == "emailAsLabel")
		labelARG = addressARG + "@" + domainARG;

	if (classARG)
	{
		document.write('<a class="' + classARG + '" href="mailto:' + addressARG + '@' + domainARG + '">' + labelARG + '</a><br>');
	}
	else
	{
		document.write('<a href="mailto:' + addressARG + '@' + domainARG + '">' + labelARG + '</a><br>');
	}
}

//IE FIX, makes it to where ie will not ask to have the object activated.
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
    theObjects[i].outerHTML = theObjects[i].outerHTML;
}