/* Script zum Anzeigen von mailto-Links
Subhash (office@subhash.at) 10.6.2005 */

// <![CDATA[
standardBox = "akademie";
standardDomain = "gea.at";

function mailtoLink(dieBox, dieDomain, derBetreff) {
	if (!dieBox) {
		dieBox = standardBox;
	}
	if (!dieDomain) {
		dieDomain = standardDomain;
	}	
	document.write('<a href="mailto:' + dieBox + '@' + dieDomain);
	if (derBetreff) {
		document.write('?subject=' + derBetreff);
	}
	document.write('">' + dieBox + '@' + dieDomain + '</a>');
}
// ]]>