<!--

/*

Script:  	TDP create e-mail addresses with Javascript v1.0
Created:	22-04-03
Edited:	[None]


Purpose:	Creates e-mail addresses which spambots can't read
		but the majority of browsers should be able to see


Usage: 	For usage instructions, see the text file in /!tdp3/!javascript e-mail create/
		on the HD

*/



function email_create(mail1, mail2, mail3) {

	var email_link = '';
	email_link = mail1 + '@' + mail2;


	if (mail3 == undefined) {
		mail3 = email_link;
	}

	if (mail3 == '') {
		mail3 = email_link;
	}


	document.write('<a href=\"mailto:' + email_link + '\" class=\"emailjscript\">' + mail3 + '</a>');

}



// -->