// send_message.js
// versteckte Email. Beispiel Anwendung im HTML Code:

//
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,mtext)
{
	       send = hasep + name + hasig + domain + hasub + mtext;
           window.status = send;
           window.location = send;
}

// ende