function e(m1,m2) {
	output="";
	for(i=0;i<m2.length;i++){output+=m1.charAt(m2.charCodeAt(i)-48);}
	document.write(output);
}