Here's a short and sweet JavaScript implementation:
function sigDig(n, sig) {
var mult = Math.pow(10, sig - Math.floor(Math.log(n) / Math.LN10) - 1);
return Math.round(n * mult) / mult;
}
alert(sigDig(1234567, 3)); // Gives 1230000
alert(sigDig(0.06805, 3)); // Gives 0.0681
alert(sigDig(5, 3)); // Gives 5