Sadly, none of us will be around to see it, but it's a day our children's children's children will enjoy. Best I could tell, McCain made this statement on Jan 3 of this year, so the countdown goes until Jan 3, 2108.
So, without further ado, let the countdown begin.
For those of you who'd like to include a counter on your site, the javascript code is in gray on the flip. Just copy all of it and paste onto your site where ever you'd like the counter to appear.
<div style="width:140px; border:solid #000000 1px; background:#E3CB76;">
<img src="http://www.raisingkaine.com/upload/iraqcountdown.jpg" alt=""><div style="padding-left:3px; padding-right:3px; font-family:arial; font-size:9pt; ">
John McCain plans on keeping American forces in Iraq for 100 years.
<br/><br/>
<script>
var today = new Date() ;
var x = today.getMonth() + 1;
var y = today.getFullYear();
var end_month = new Date(y, x, 1) ;
var leaveIraq = new Date(2108, 0, 3) ; // Exactly 100 years from the day McCain made his "100 year" statement
var years = leaveIraq.getYear()-today.getYear() ;
var days ;
var months ;
var one_day=1000*60*60*24 ;
var daysEOM = Math.ceil((end_month.getTime()-today.getTime())/(one_day) - 1) ;
if (today.getMonth() > leaveIraq.getMonth() )
{
months = 12 - (today.getMonth() - leaveIraq.getMonth()) ;
years-- ;
}
else
{
months = leaveIraq.getMonth() - today.getMonth() ;
}
if (today.getDate() > leaveIraq.getDate() )
{
days = daysEOM + leaveIraq.getDate();
months-- ;
if (months < 0)
{
months = 11 ;
years-- ;
}
}
else
{
days = leaveIraq.getDate() - today.getDate() ;
}
document.write("<b>McCain's Pullout In</b>") ;
document.write("<div style="padding-left:12px; font-weight:bold;">") ;
document.write(years + " Years<br/>") ;
document.write(months + " Months</br>") ;
document.write(days + " Days</br></br>") ;
document.write("</div>") ;
document.write("Only <b>" + Math.ceil((leaveIraq.getTime()-today.getTime())/(one_day)) + " days</b> to go!<br/>") ;
</script>