// Get today's current date.
var now=new Date();
// ADD 180 days
now.setDate(now.getDate()+182);
// Join it all together

getdayplus180 = (now.getMonth() +1) + "/" +
				    now.getDate() + "/" +
                now.getFullYear();
// Print out the data.
document.write(getdayplus180);
