


// header
document.write('<b>American Military<br />Deaths in Iraq:</b>');

// total casualties
document.write('<div style="margin: 4px 0px 4px 8px">');
document.write('Since the war began...<br />Total: <b>'+casualties.total_value+'</b><br />');
document.write('in combat: <b>'+casualties.combat_value+'</b>');
document.write('</div>');

// casualties wounded
document.write('<div style="margin: 0px 0px 8px 8px">');
document.write('Wounded: <b>'+casualties.wounded_value+'</b><br />');
document.write('Estimated wounded: <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <b>'+casualties.wounded_estimate+'</b>');
document.write('</div>');

// link to casualty page
document.write('<div style="margin-left: 18px">');
document.write('For more details visit<br /><a href="'+casualties.title_url+'" target="_blank">Antiwar.com</a>');
document.write('</div>');