// JScript source code
function ConcatenateAddy(person, org, domain)
{
	return person + '@' + org + '.' + domain
}

function BuildHRef( person, org, domain, text )
{
	document.write( '<a href=mailto:' + ConcatenateAddy( person, org, domain ) + '>' + text + '</a>' );
	return
}
function Show(Selection)
{
	var	selection = GetElementById(document,	Selection)
	if (selection != null)
	{
		if (selection.style.display == "")
			{	selection.style.display = "none"; }
		else
			{ selection.style.display = ""; }
	}
}
function GetElementById(document, ID)
{
	if(document.getElementById)
		return document.getElementById(ID);
	else
		return document.all(ID);
}