function Expand(obj)
{
	objExpandable = $(obj.parentNode).next('.Expandable');
	if (objExpandable.is(':visible'))
		objExpandable.hide();
	else
		objExpandable.show();
}
$(document).ready(function()
{
	// Remove hidden AntiSpam tags so that the user can copy-paste the e-mail address
	$('.AntiSpam').remove();
});
