function returnFloat(value){
var value=Math.round(parseFloat(value)*100)/100; var money=value.toString().split("."); if(money.length==1){ value=value.toString()+".00"; return value; } if(money.length>1){ if(money[1].length<2){ value=value.toString()+"0"; } return value; }}