﻿// JScript File
// tvo.js


/*
    Bsp: aa@bb.ch
 beforeA    = Name (aa) 
 afterAt    = Domainname (bb.ch)
 sportClub  = Verein
*/

function spamschutz2(beforeAt, afterAt, sportClub){
	sendMail( beforeAt +'@' +afterAt, sportClub +' von www.stvoberflachs.ch' );
}



/*
    Bsp: aa@bb.ch
 mailAddress = mail address 
 subject     = mail subject
*/

function sendMail( mailAddress, subject ){
	var mail = 'mailto:' +mailAddress +'?subject=' +subject;
	document.location.href=mail;
}