function nextweek(){ var today = new Date(); var nextweek = new Date(today.getFullYear(), today.getMonth(), today.getDate()+7); return nextweek; }