// JavaScript Document
var today = new Date();
today.setDate(today.getDate() + 7);
var sup = "";
if (today.getDate() == 1 || today.getDate() == 21 || today.getDate() == 31)
   { sup = "st"; }
else if (today.getDate() == 2 || today.getDate() == 22)
   { sup = "nd"; }
else if (today.getDate() == 3 || today.getDate() == 23)
   { sup = "rd"; }
document.write(today.getMonth() + 1 + "/" + today.getDate() + "/" + today.getFullYear() + sup);
