﻿// AntiSpamMailer vers 1.0 - 16/01/06


var muell=".jhgkj@fguizthj7865";//enh?lt das at-zeichen und den punkt--zur verschleierung ;-)
var verbinder=muell.charAt(6);
var thedot=muell.charAt(0);
var alias="1";

//mail-bild-button
function CallMail(masvr,nix,madom,auchnix,manam){
	//"pegasus-lemgo","-","de","-","kundenservice"
	window.location.href = "mai" +  "lto:"+manam+verbinder+masvr+thedot+madom;
}



// F?gt eine E-Mail-Adresse ein
function WriteMailer(masvr,nix,madom,auchnix,manam,text){
  if(text=="")
    document.write('<a href="mai' +  'lto:'+manam+verbinder+masvr+thedot+madom+'">'+manam+verbinder+masvr+thedot+madom+'</a>');
  else
    document.write('<a href="mai'  + 'lto:'+manam+verbinder+masvr+thedot+madom+'">'+text+'</a>');
}




//formular abwicklung
function  Sendit(){
	//die variablen werden im Dokument festgelegt, das das formular enth?lt
	
	//document.AntiSpamForm.mail_recipient.value = dieAdresse + verbinder + dieURL  +  thedot + dasLand
	document.AntiSpamForm.recipient.value=alias;
	document.AntiSpamForm.action=dieVersandadresse;
	//document.AntiSpamForm.elements["x"].value="Null";
	
	
	document.AntiSpamForm.redirect.value=AntwortURL;
	document.AntiSpamForm.subject.value=dasSubjekt;
  	//document.forms[0].submit();
	
	return true
}







//focus ins erste feld
function setFocus(){
document.AntiSpamForm.Vorname.focus();

}
