function json_parse(data)
{
	try
	{
		return data = JSON.parse(data);
	}
	catch(e)
	{
		return false;
	}
	return false;
}