// JavaScript Document

function mail(name , domain, title)
	{
		this.name = name;
		this.domain = domain;
		this.title = title;
		document.write('<a href=\"mailto:' + name + '@' + domain + '\" title=\"' + title + '\">');
		document.write(title + '</a>');
	}
	
function abmelden()
	{
   		window.open("http://www.touristikboerse.de/news/abmelden.php", "_blank", 		"width=300,height=300,left=20,top=20,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0");
	}

