
/***********************************************
* Encrypt Email script- Please keep notice intact
* Tool URL: http://www.dynamicdrive.com/emailriddler/
* **********************************************/

function showMail(type){
	var emailriddlerarray=[105,110,102,111,64,103,101,99,101,114,116,105,102,105,99,101,101,114,100,101,109,101,100,105,97,116,111,114,115,46,110,108]
	var encryptedemail_id44='' //variable to contain encrypted email 
	for (var i=0; i<emailriddlerarray.length; i++)
	encryptedemail_id44+=String.fromCharCode(emailriddlerarray[i])
	if (type == 1){
		document.write('<a href="mailto:'+encryptedemail_id44+'">'+encryptedemail_id44+'</a>')
	}
	if (type == 2){
		document.write('<area shape="rect" coords="607,98,797,113" href="mailto:'+encryptedemail_id44+'" alt="Stuur e-mail" />')
	}
	if (type == 3){
		document.write(encryptedemail_id44)
	}
}
