function conv(s)
{
	var r = "";
	if(s.length > 0)
	{
		for(var i=s.length-1;i>0;i--)
		{
			r += s.charCodeAt(i);
		}
	}
	return r;
}