// JavaScript Document<script type="text/javascript" language="javascript"> <!--	Today = new Date();	TwoWeeks = new Date();	TwoWeeks.setTime(Today.getTime() + (60*60*24*14*1000));	Day = TwoWeeks.getDate();	Month = TwoWeeks.getMonth();	Year = TwoWeeks.getYear();	document.theForm.selDay.options[Day].selected = true;	document.theForm.selMonth.options[Month].selected = true;	x = document.theForm.selYear.length;	for(i=0;i<x;i++) {	  if(document.theForm.selYear.options[i].value == Year) {		document.theForm.selYear.options[i].selected = true;  }}// --></script>
