// JavaScript Document

function inverse(x)
{
	var y="";
	for(j=x.length;j>=0;j--)
	{
		y=y+x.charAt(j);
	}
	return y;
}

function mailto(email)
{
	this.location.href="mailto:"+ inverse(email);
	
}


