/*float*/ function roundTo(/*float*/ value, /*int*/ digits) {
	return parseFloat(Math.round(value * Math.pow(10, -digits)) / Math.pow(10, -digits));
}

var MATH_JS = true;