   document.write('<font color="#003333" size="1" face="Comic Sans MS, sans-serif, Verdana">');
   var currentIssue;
//   var currentURL = window.location;
   var currentURL = document.URL;
   document.write('<select name=archiveIssues style="height:13; width:71px;font:9px bold verdana, arial, sans-serif;text-decoration:none;background-color:#E1E6CF;" onChange=jumpPage(this.form.archiveIssues)>');
   if (currentURL.indexOf("january") > 0) {
      document.write('<option value=/issues/january2012/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>January');
   } else {
      document.write('<option value=/issues/january2012/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>January');
   }
   if (currentURL.indexOf("february") > 0) {
      document.write('<option value=/issues/february2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>February');
   } else {
      document.write('<option value=/issues/february2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>February');
   }
   if (currentURL.indexOf("march") > 0) {
      document.write('<option value=/issues/march2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>March');
   } else {
      document.write('<option value=/issues/march2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>March');
   }
   if (currentURL.indexOf("april") > 0) {
      document.write('<option value=/issues/april2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>April');
   } else {
      document.write('<option value=/issues/april2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>April');
   }
   if (currentURL.indexOf("may") > 0) {
      document.write('<option value=/issues/may2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>May');
   } else {
      document.write('<option value=/issues/may2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>May');
   }
   if (currentURL.indexOf("june") > 0) {
      document.write('<option value=/issues/june2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>June');
   } else {
      document.write('<option value=/issues/june2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>June');
   }
   if (currentURL.indexOf("july") > 0) {
      document.write('<option value=/issues/july2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>July');
   } else {
      document.write('<option value=/issues/july2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>July');
   }
   if (currentURL.indexOf("august") > 0) {
      document.write('<option value=/issues/august2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>August');
   } else {
      document.write('<option value=/issues/august2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>August');
   }
   if (currentURL.indexOf("september") > 0) {
      document.write('<option value=/issues/september2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>September');
   } else {
      document.write('<option value=/issues/september2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>September');
   }
   if (currentURL.indexOf("october") > 0) {
      document.write('<option value=/issues/october2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>October');
   } else {
      document.write('<option value=/issues/october2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>October');
   }
   if (currentURL.indexOf("november") > 0) {
      document.write('<option value=/issues/november2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>November');
   } else {
      document.write('<option value=/issues/november2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>November');
   }
   if (currentURL.indexOf("december") > 0) {
      document.write('<option value=/issues/december2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html selected>December');
   } else {
      document.write('<option value=/issues/december2011/'  + document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>December');
   }

//   document.write('<option value=/issues/january/'+ document.form1.cat.value +'_'+ document.form1.ageArchiveList.value +'.html>January');
   document.write('</select>');
   document.write('</font>');
   document.form1.archiveIssues.blur();

function jumpPage(newLoc) {
   window.location.href = newLoc.options[newLoc.selectedIndex].value;
}

