function hideEmail( emailbox, Display )
	{
		var first = 'ma';
		var second = 'il';
		var third = 'to:';
		var address = emailbox;
		var domain = 'cccinc';
		var ext = 'net'; 
		document.write('<a href="');
		document.write(first+second+third);
		document.write(address);
		document.write('&#64;');
		document.write(domain);
		document.write('.');
		document.write(ext);  
		document.write('">');
		if (Display == 'Button')
			{
				document.write('<img src="../images/email_me.png" alt="Contact Us" border="0" /></a>');
			}
			else
			{
				document.write(Display + '</a>');
			}
			
	}

