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');
}

function writeLoadFrameset()
{
	if(typeof window.top == 'undefined' || 
		typeof window.top.frames[0] == 'undefined' || 
		window.top.name != 'topFrameset')
	{
		document.write('<p><a href="/?' + escape(location.pathname) + '" target="_top">Load Frameset</a></p>');
	}
}

function addDate()
{
	  var monat = new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun','Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'); 
	  var jetzt = new Date(); 
	  var yyyy = jetzt.getFullYear(); 
	  var mm = monat[jetzt.getMonth()]; 
	  var dd = jetzt.getDate(); 
	  if (10 > dd) dd = '0' + dd; document.write('<font face="Verdana" size="2">'+ dd + '-' + mm + '-' + yyyy+'</font>');	
}

