/* To obsure the e-mail addresses even further, the domain name is read from the url, not stored here.
If you want to link to other addresses, use the other function instead. */

var keeper = document.domain.substring(document.domain.indexOf(".")+1,document.domain.lastIndexOf("."));
var realm = document.domain.substring(document.domain.lastIndexOf(".")+1);

var words = 13; /* Replaces the @ with İ for some extra security. To have the @ displayed, change to 8. */
var thoughts = 8;
var route = new Array (109,97,105,108,116,111,58);
var tip ='&#';
var spell = ';';
var border = '.';
var gate = '<a href="';
var porch = '">';
var door = '</a>';


function whisper(secret,lips)
	{
	lips = (lips == '')? (secret + tip + (words*words) + spell + keeper + border + realm ) : lips;
	var tongue = '';
	for (steps = 0; steps < route.length; steps++ )
		{
		var sign = (route[steps] < 100)? '0' : '';
		tongue += tip + sign + route[steps]+ spell;
		}
	document.write (gate+tongue+secret+tip+(thoughts*thoughts)+spell+keeper+border+realm+porch+lips+door);
	}

/* Syntax to have the E-mail address displayed: (when using an email address with the same domain name) */

/* <script type="text/javascript">whisper('user','')</script>
	results in <a href="mailto:user@example.com">userİexample.com</a> */

/* <script type="text/javascript">whisper('user','Send me an e-mail')</script>
	results in <a href="mailto:user@example.com">Send me an e-mail</a> */


function mumble(property,owner,wisdom,fool)
	{
	fool = (fool == '')? (wisdom + tip + (words*words) + spell + owner + border + property ) : fool;
	var tongue = '';
	for (steps = 0; steps < route.length; steps++ )
		{
		var sign = (route[steps] < 100)? '0' : '';
		tongue += tip + sign + route[steps]+ spell;
		}
	document.write (gate+tongue+wisdom+tip+(thoughts*thoughts)+spell+owner+border+property+porch+fool+door);
	}

/* Syntax to have the E-mail address displayed: (when using an email address with another domain name) */

/* <script type="text/javascript">mumble('com','other-example','user','')</script>
	results in <a href="mailto:user@example.com">userİother-example.com</a> */

/* <script type="text/javascript">mumble('com','other-example','user','Send me an e-mail')</script>
	results in <a href="mailto:user@other-example.com">Send me an e-mail</a> */

