function addEM(name, domain, tld, color)
{
	var colCode = '';
	if( typeof color != 'undefined' && typeof color == 'string' && color.length > 0 )
		colCode = ' style="color:' + color + '"';

	document.write('\<a href=\"mai' + String.fromCharCode(0x6C) + 'to:' + eAddress(name, domain, tld) + '" ' + colCode + '>');
	document.write(eAddress(name, domain, tld) + '</a>');
}

function addEMText(name, domain, tld, text, color)
{
	var colCode = '';
	if( typeof color != 'undefined' && typeof color == 'string' && color.length > 0 )
		colCode = ' style="color:' + color + '"';

	document.write('\<a href=\"mai' + String.fromCharCode(0x6C) + 'to:' + eAddress(name, domain, tld) + '" ' + colCode + '>');
	document.write(text + '</a>');
}

function eAddress(name, domain, tld)
{
	var addr = name + String.fromCharCode(0x40) + domain + '.' + tld;
	return addr;
}

function addFooter()
{
	document.write('<hr>\n');
	document.write('<p align="center" style="margin-top: 0; margin-bottom: 0"><b><font \n');
	document.write('face="Arial" size="2" color="#084A39">&copy;\n');
	document.write('2002-2004 PARAMOUNT Consortium &ndash; \n');
	addEM('info','paramount-tours','com','#084A39');
	document.write('</font></b></p>\n');
	document.write('\n');
	document.write('\n');
}


