function decimals (x, n)
{
var mult
mult = Math.pow(10,n)
return Math.round(mult*x)/mult
}
