// JavaScript Document

// SPAM TRAP JAVASCRIPT EMAIL LINK THINGY
function insertContact (theName, linkText){
	
	var theDomain = ('pensioncorporation' + '.' + 'com');
	
	theAddress = (theName + '&#064' + theDomain);
	if(linkText=='me'){
		linkText = theAddress;
	}
	document.write('<a href="mailto:' + theAddress +'">' + linkText + '<\/a>');
}