// send_message.js
// versteckte Email. Beispiel Anwendung im HTML Code:
//
// Das Copyright der holligen94.ch liegt beim jeweiligen Autor
// des Originals. In der Regel werden die holligen94.ch nach
// der Mozilla Public License (MPL) bzw. der GNU General Public License (GPL)
// veröffentlicht, d.h. der Quelltext oder Teile davon dürfen nur dann weiter-
// verarbeitet werden, wenn das Produkt unter Angabe des Originalautors wieder
// unter denselben Bedingungen (MPL bzw. GPL) veröffentlicht wird.

window.status = "alweb its - Web- und E-Mail Hosting - Kommunikations- und Netzwerkloesungen";
statusave = window.status;
domain='n/a'; name='n/a'; mtext='n/a';
hasig='@'; hase1=':'; hase4='i'; hase2='m';
hase7='o'; hase6='t'; hase5='l'; hase3='a';
hasep=hase2 + hase3 + hase4 + hase5 + hase6 + hase7 + hase1;
hasub='?subject=';
//
// -------------------------------------------------------------------------------------------
function send_msg(name,domain,tldomain,mtext)
{
   send = hasep + name + hasig + domain + "." + tldomain + hasub + mtext;
   window.location = send;
}
//
// -------------------------------------------------------------------------------------------
function send_msg_y(name,domain,tldomain,mtext)
{
   var curdate = new Date();
   var xyear = curdate.getFullYear();
   send = hasep + name + xyear + hasig + domain + "." + tldomain + hasub + mtext;
   window.location = send;
}
//
// -------------------------------------------------------------------------------------------
function send_msg_z(mtext)
{
   var curdate = new Date();
   var xyear = curdate.getFullYear();
   send = hasep + 'plieth' + xyear + hasig + 'pelias' + "." + 'net' + hasub + mtext;
   window.location = send;
}
// -------------------------------------------------------------------------------------------
function stat_ovr(name,domain,mtext)
{
   statusave = window.status;
   send = hasep + name + hasig + domain + hasub + mtext;
   window.status = send;
   onMouseover="this.innerHTML='Sehen Sie?'"
}
// -------------------------------------------------------------------------------------------
function stat_out()
{
   window.status = statusave;
   onMouseout="this.innerHTML='Ich bin dynamisch'"
}
// ende

