var right_now=new Date();
right_now.setDate(right_now.getDate());
var right_future=new Date();
right_future.setDate(right_future.getDate()+10);
var thedate=right_now.getDate();
var thedatefuture = right_future.getDate();
var month_num=right_now.getMonth()
var month_num_future=right_future.getMonth();
var month_name=new Array("Jan ","Feb ","Mar ","Apr ","May ","June ","July ","Aug ","Sept ","Oct ","Nov ","Dec ");
function optionlist_month(){
 for(i=0;i<9;i++){
  usemonth=month_num+i;
  if(usemonth == month_num_future) {
   markselect = "selected";
  } else {
   markselect = "";
  }
  if(usemonth>11)usemonth=usemonth-12;
  document.write("<option value='"+(usemonth+1)+"' "+markselect+" >"+month_name[usemonth]);
 }
}
function optionlist_day(){
 for(i=1;i<31;i++){
  if(i==thedatefuture){useselect='selected';
  }else{
   useselect='';
  }
  document.write("<option value='"+i+"' "+useselect+">"+i);
 }
}//-->

function optionlist_year() {
	
	var right_now=new Date();
	current_year = right_now.getFullYear();
	
	for(i=current_year;i<(current_year+2);i++) {
		document.write("<option value='"+i+"'>"+i);	
	}
	
}
