function addCommas(nStr)
{
	nStr += '';
	x = nStr.split('.');
	x1 = x[0];
	x2 = x.length > 1 ? '.' + x[1] : '';
	var rgx = /(\d+)(\d{3})/;
	while (rgx.test(x1)) {
		x1 = x1.replace(rgx, '$1' + ',' + '$2');
	}
	return x1 + x2;
}
var google_dollars=1664.76;
var amazon_dollars=250.29;
var total_dollars=google_dollars + amazon_dollars;
document.write("<span class=\"BodySmallBlack\">",
"<span class=\"linkclass1\">",
"<br><br><br><br><b>So far we&#39ve raised: $"),
/* "<br>From Amazon.com purchases: $");
document.write(amazon_dollars);
document.write("<br>",
"From Google: $");
document.write(google_dollars)
document.write("<br>",
"<span style=\"line-height:240%\">",
"<b>Total: $");
*/
document.write(addCommas(total_dollars.toFixed(2)))
document.write("</b><br>",
"<a href=\"/Financials.html\">*See financial disclosure here</a><br>",
"</span>",
"</span></span>");