function openMailLink() {
	
	var sendThisToAFriend = document.getElementById('sendThisToAFriend');
	var contactOwnerWithID = document.getElementById('contactOwnerWithID');
	
	if (sendThisToAFriend != null && contactOwnerWithID != null) {
	
		var sendThisToAFriendHref = sendThisToAFriend.href;	
		var id = sendThisToAFriendHref.substring(sendThisToAFriendHref.lastIndexOf('id=') + 3);
		
		var contactOwnerWithID = document.getElementById('contactOwnerWithID');
		contactOwnerWithID.href += ' (' + id + ')';
	
	}
  
}

