if (!window.TwoDecimals) {
	var TwoDecimals = new Function("num", "/* round to 2 decimals */ num = Math.round(100*num) / 100; /* format the price as currency */ if (num >= 1000) num = Math.floor(num/1000) + ',' + Math.round(100*(num - 1000*Math.floor(num/1000))) / 100; if (num.toString().lastIndexOf('.') == -1) num += '.00'; else if (num.toString().lastIndexOf('.') > num.toString().length - 3) num += '0'; return num;");
}