function hexToString(hex)
{
	var ret="";
	for (i=0;i<hex.length;i+=2)
		ret += decodeURIComponent("%" + hex.substr(i, 2));
	return ret;
}
