// JavaScript Document	function insertContact (theName, linkText){		theDomain = ('aventura' + 'argentina' + '.' + 'com');	theAddress = (theName + '&#064' + theDomain);	if(linkText=='me'){		linkText = theAddress;	}	document.write('<a href="mailto:' + theAddress +'">' + linkText + '<\/a>');}
