<%!
Java.text.Decimalformat format = (java.text.decimalformat) java.text.Decimalformat.getInstance ();
/ / Format the floating point as a string of two decimals
String formatdouble (double f)
{
Format.ApplyPattern ("####. ##");
Return Format.Format (f);
}
%>