

// lives saved since 20 Mar 2003

var invasion 		= new Date("March 20, 2003");
var today 			= new Date();

var milliseconds  	= today.getTime() - invasion.getTime();
var days 			= Math.floor ( milliseconds  / (1000 * 60 * 60 * 24) );



// Saddam's kill rate over his reign:
//  138 killed per day

var deaths = days * 138;

//		document.write( deaths );



// insert comma using div and mod
// (assumes deaths less than 1 million - works until about 2022)

		var d1 = Math.floor ( deaths / 1000 );
		var d2 = deaths % 1000;

// this doesn't work - 300,005 displays as 300,5 - need zero padding
//	 	document.write( d1 + "," + d2 );
  
	 	document.write( d1 + ",000" );



