		//This part displays currentdate + 2 days
		var arrMonths = new Array(11);
		arrMonths[0] = 31;
		arrMonths[1] = 28;
		arrMonths[2] = 31;
		arrMonths[3] = 30;
		arrMonths[4] = 31;
		arrMonths[5] = 30;
		arrMonths[6] = 31;
		arrMonths[7] = 31;
		arrMonths[8] = 30;
		arrMonths[9] = 31;
		arrMonths[10] = 30;
		arrMonths[11] = 31;

		var curr_day = new Date();
		//checks for leap year
		if (curr_day.getYear()%4 == 0) {
			arrMonths[1] = 29;
		}

		var curr_date = curr_day.getDate();
		var curr_month = curr_day.getMonth();
		var curr_year = curr_day.getYear();
		var days_curr_month = arrMonths[curr_month];

		//Adds 2 days from current date
		if (curr_date <= (parseInt(days_curr_month) - parseInt(2)))
		{
			curr_date = parseInt(curr_date)+parseInt(2);
			document.Form1.moveYear.selectedIndex.value = curr_year;
			document.Form1.moveMonth.selectedIndex = curr_month;
			document.Form1.moveDay.selectedIndex=curr_date-1;
		}
		else {
			curr_date = parseInt(curr_date) + parseInt(2);
			curr_date = (parseInt(curr_date) - parseInt(days_curr_month));
			curr_year = 0;
			if (curr_month == 11) {
				curr_month = 0;
				curr_year = 1;
			}else {
				curr_month = parseInt(curr_month) + parseInt(1);
			}
			document.Form1.moveYear.selectedIndex = curr_year;
			document.Form1.moveMonth.selectedIndex = curr_month;
			document.Form1.moveDay.selectedIndex = curr_date-1;
		}
