//Send this a number, and this function will return the number
//to two significant decimal places.

function floor(number)
{
  return Math.floor(number*Math.pow(10,2))/Math.pow(10,2);
}
