
// Prints the date of 3 months ahead

function init() {
	var myDate = new Date();
	myMonthNum = myDate.getMonth();
	myMonthNum = myMonthNum + 3;
	myDate.setMonth(myMonthNum);
	myMonth = myDate.getMonth() + 1;
	myDay = myDate.getDate();
	myYear = myDate.getYear() + 1900;
	document.write(myMonth + "-" + myDay + "-" + myYear);
}

init();
