function print_r(o)
{
	var s = ""
	for (var i in o)
	{ 
		if (/\d+/.exec(i)) s += "[" + i + "] => " + o[i] + "\n"
	}
	alert(s);
}