// Implement business logic
function NextFact(){
	//send this function a url and it will put whatever that url returns
	//into the divobject
	divobj = 'randomfact';
	document.getElementById(divobj).innerHTML = '<img src="images/red-ajax-loader.gif">';
	var keywords =  [ 
		"North America had over 248 million Internet users as of June 2008. (internetworldstats.com)",
		"Asia had over 578 million Internet users as of June 2008. (internetworldstats.com)", 
		"Europe had over 384 million Internet users as of June 2008. (internetworldstats.com)",
		"The Middle East had over 41 million Internet users as of June 2008. (internetworldstats.com)",
		"Latin America had over 139 million Internet users as of June 2008. (internetworldstats.com)",
		"E-commerce Purchases in the US are growing over 3X faster than retail purchases in general. (US Census) ",
		"E-commerce Sites in the US had sales of over $34 billion in the 2nd Quarter of 2008. (US Census)",
		"Less than 3.5% of retail purchases in the US have moved to the Internet so far. (US Census)",
		"RJMetrics can send you email and SMS alerts based on performance milestones and problems.",
		"RJMetrics allows you to make customized dashboards for each of your employees.", ];
	var knum = Math.floor(Math.random()*(keywords.length-1));
	var keyword = keywords[knum];
	document.getElementById(divobj).innerHTML = keyword;
}

