﻿function encAddr(arr)
{
	this.arr = arr;
	this.toString = function()
	{
		var res = '';
		for (i=0;i<this.arr.length;i++)
		{
			res += String.fromCharCode(this.arr[i])
		}
		
		return res;
	}
}
