// JavaScript Document
function doSendMail(){
	var coding = 'abcdefghijklmnopqrstuvwxyz';
	var myName = new Array();
	var myAddress = new Array();
	var ref = "mailto:"
	var ending = ".com";
	var position = 0;
		
	myAddress[0] = 't';
	myAddress[1] = 'u';
	myAddress[2] = 'f';
	myAddress[3] = 'w';
	myAddress[4] = 'f';
	myAddress[5] = 'c';
	myAddress[6] = 'm';
	myAddress[7] = 'j';
	myAddress[8] = 'h';
	myAddress[9] = 'i';
	
	myName[0] = 't';
	myName[1] = 'u';
	myName[2] = 'f';
	myName[3] = 'w';
	myName[4] = 'f';
	
	for( x in myName){
		position = coding.indexOf(myName[x]);
		ref += coding.charAt(position - 1);

	}

	ref += '@';
	
	for( x in myAddress){
		position = coding.indexOf(myAddress[x]);
		ref += coding.charAt(position - 1);
	}
	
	ref += ".com";
	
document.location.href=ref;
}

