<!--
var today = new Date();
var mm = today.getMonth();
var dd = today.getDate();
var yy = today.getYear();
if (yy < 1900) {yy = yy+1900;}
var y1 = yy+1;
var months = new Array("JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC");

//Format Date Selection Pulldown Menu
document.write('<SELECT NAME="tour_month">');
var n=1;
for (i=0; i<=11; i++,n++) {
  (n<10) ? n='0'+n : n;
  document.write('<OPTION VALUE="'+n+'"');
  if (mm == i) {
    document.write(' SELECTED>'+months[i]);
   } else {
    document.write('>'+months[i]);
  }
}
document.write('</SELECT><SELECT NAME="tour_day">');
var n=1;
for (i=1; i<=31; i++,n++) {
  (n<10) ? n='0'+n : n;
  document.write('<OPTION VALUE="'+n+'"');
  if (dd == i) {
    document.write(' SELECTED>'+i);
   } else {
    document.write('>'+i);
  }
}
document.write('</SELECT><SELECT NAME="tour_year"><OPTION VALUE='+yy+' SELECTED>'+yy+'<OPTION VALUE='+y1+'>'+y1+'</SELECT>');
//-->
