// Function LaunchMClient is a function whose sole purpose
// is to obscure the mailto href to make it more difficult
// for those who wish to harvest email addresses from our
// web pages.  The at sign and period in email addresses passed
// to this function will ordinarily be represented by their
// html escape codes further obscuring the fact that they are 
// email addresses when evaluated by harvesting agents.

	function LaunchMClient(Address) {
		window.location.href = 'mailto: ' + Address;
	}

