//------------------------------------------------------------
// Project: E-Mail link
// ====================
// 
// Funktion    : E-Mail link
// Beschreibung: E-Mail link entschlüsseln und folgen
// Parameter   : -
// Benötigt    : -
// Author      : Daniel Künzi
// Datum       : 25.12.2006
//
//------------------------------------------------------------

function email_to(email)
{
	var to = email.substring(1, email.length-1);
	to = to.replace(/\[at\]/, "@");
	window.location.href = "mailto:"+to;
}
