/* 
 * Copyright(c) 2001-2009, BrainStorm Business Resources, Inc. 
 * All Rights Reserved.  Derechos Reservados. 
 *
 * BBR Systems(r) is a division of BrainStorm Business Resources, Inc.
 * This software is the intellectual property of BBR Systems(r).
 *
 * BBR Systems(r) es una division de BrainStorm Business Resources, Inc.
 * Este software es la propiedad intellectual de BBR Systems(r).
 *
 * http://www.census.gov/Press-Release/www/releases/archives/population/005164.html
 *
 * The nation’s Hispanic population reached 41.3 million as of July 1, 2004, according to
 * national estimates by race, Hispanic origin and age released today by the U.S. Census
 * Bureau.
 * 
 * Hispanics, who may be of any race, accounted for about one-half of the national population
 * growth of 2.9 million between July 1, 2003, and July 1, 2004. The Hispanic growth rate of
 * 3.6 percent over the 12-month period was more than three times that of the total
 * population (1.0 percent).
 */
document.write('<span id="poplatino" title="U.S. Hispanic/Latino Population non-scientific estimate based on http://www.census.gov/Press-Release/www/releases/archives/population/005164.html"></span>');
var ppltn = getElement("poplatino");
ppltn.base = 41300000;
ppltn.fechabase = new Date("7/1/2004");
ppltn.ranual = 3.6/100;
ppltn.msanual = 365*24*60*60*1000;
ppltn.inc = function() {
this.sd = Math.round(this.base*(1+this.ranual*(new Date()-this.fechabase)/this.msanual),0);
this.innerHTML = addCommas(this.sd);
setTimeout("ppltn.inc()", 5000);
}
ppltn.inc();
