﻿/*
 - - - - - - - - - - - - - - - - - - - - -
Titel: Bombenkrieg gegen Hamburg (Scripts)
Autor: Dumrath & Fassnacht KG (GmbH & Co.)
URL: http://www.duf-online.de/

Erstellt : 2006-03-30
Bearbeitet: 2006-04-05
- - - - - - - - - - - - - - - - - - - - -
*/

// Init Funktionen
window.onload = function() {}

// Mailverschlüsselung

function setMailLink(prefix, domain, suffix, label) {
	var linkText = prefix + '@' + domain + '.' + suffix;
	document.open();
	document.write('<a href="mailto:' + linkText + '">' + label + '</a>');
	document.close();
}