//
// Hide Emails from harvesters
// Writen: June. 30
// Modified to cover all emails on all sites: Jan. 13 / 2005
//
// Usage:
// Call the script where you want the email to appear
// ie. <script>displayEmail("the name of the link you want",EmailID#);</script>
//
// Note: you will also want to import the script to use it
// Use : <script language="javascript" src="hideEmail.js"></script>
//
function displayEmail(text,whichEmail)
{
	var name1,dom1,end;
	
	end = "ca";
			
	switch( whichEmail )
	{
		case 0:
			name1 = "info";
			dom1 = "camf";
			break;
		case 1:
			name1 = "christine";
			dom1 = "camf";
			break;
		case 2:
			name1 = "marc";
			dom1 = "camf";
			break;
		case 3:
			name1 = "brigitte";
			dom1 = "camf";
			break;
	}
	
	var mailto1 = "mai";
	var mailto2 = "lt";
	var mailto3 = "o:";
	document.write("<a href='" + mailto1 + mailto2 + mailto3 + name1 + "@" 
				+ dom1 + "." + end + "'>" + text + "</a>")
}