function ShowEmail(thisUser, thisDescription)
	{
	var contact = 'Email: ' + thisDescription;
  var email = thisUser;
  var emailHost = 'behlenedge.com';
  document.write('<a href=' + 'mail' + 'to:' + email + '@' + emailHost + '>' + contact + '</a>');
	}


