function email_bottom(ld, n, d, id)
{
	link = n+'@'+d+'.'+ld;
	var a = document.createElement("A");
	a.href="mailto:"+link;
	a.appendChild(document.createTextNode(link));
	window.parent.bottom.document.getElementById(id).appendChild(document.createTextNode(", E-Mail: "));
	window.parent.bottom.document.getElementById(id).appendChild(a);	
}

function email(ld, n, d, id)
{
	link = n+'@'+d+'.'+ld;
	var a = document.createElement("A");
	a.href="mailto:"+link;
	a.appendChild(document.createTextNode(link));
	window.parent.main.document.getElementById(id).appendChild(a);	
}


function email_subject(ld, n, d, s, id)
{
	link = n+'@'+d+'.'+ld;
	var a = document.createElement("A");
	if(s.length==0)
	{
		a.href="mailto:"+link;
	}else
	{
		a.href="mailto:"+link+"?subject="+s;
	}
	a.appendChild(document.createTextNode(link));
	window.parent.main.document.getElementById(id).appendChild(a);	
}

function text(t, id)
{
	var text = document.createTextNode(t);
	window.parent.main.document.getElementById(id).appendChild(text);	
}
