<!--
function FormatCurrency(strValue)
{
   strValue = new String(strValue)
   strValue = strValue.replace(",", ".")

   if (strValue.indexOf(".") == -1) 
   { 
      strValue += '.00' 
   }
   else 
   {
      strValue += '0' 
   }

   return strValue
}
//-->