<!-- 
var date = new Date("June 20, 2008");
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
if (days > 1) {
document.write(days+1 + " days until ");
}
else if (days == 1) {
document.write("Only two days until ");
}
else if (days == 0) {
document.write("Tomorrow is ");
}
else if (days < 0) {
document.write("It's here!");
}
document.write(" <br><a href=http://vwfilms.net/driveday.html>International Drive Your VW To Work Day</a> <br>Friday, June 20, 2008");
// -->
