
function parsejson(content) {
	try {
		return eval('(' + content + ')');
	} catch (e) { return null }
}
