<!--
cur_Date=new Date();
cur_day=cur_Date.getDate();
cur_month=cur_Date.getMonth();
cur_date=cur_Date.getDate();
cur_year=cur_Date.getYear();
if (cur_year <2000) cur_year =cur_year +1900; // adjust year in case of y2k on the user computer


   var months =new Array ('January','February','March','April','May','June','July','August','September','October','November','December');
   var days   =new Array ('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
   var temp=1 ;
//   document.write('<br>') ;
//   document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td>') ;
   for (j=1; j<=7;j++)
   {
       temp+=1 ;
       if (temp>7) temp=1  ;
       document.write('<a href="/cgi-bin/Elist.cgi?cc='+EML_CC+'&l='+EML_L+'&com=viewday&i='+temp+'"><img border=0 src="../images/tabs/') ;
       document.write('b') ;
       document.write('Eday'+(temp-1)+'.gif" width="30" height="22" alt="'+days[temp-1]+'"></a>') ;
       document.write('') ;
       document.write('') ;
   }

//   document.write('</td><td>') ;
   document.write('<a href="/cgi-bin/Eshowvenues.cgi?cc='+EML_CC+'&l='+EML_L+'&s=E"><img border=0 src="../images/tabs/') ;
   document.write('bEvenues.gif" width="100" height="22" alt="Event venues"></a>') ;
   document.write('<a href="javascript:zx(\'B4\',\'6\')"><img border=0 src="../images/tabs/') ;
   document.write('bEtheatre.gif" width="100" height="22" alt="Shows & Theatre listings"></a>') ;
//   document.write('</td></tr><tr><td colspan="2">') ;

   document.write('<br>') ;
   var monthnum=cur_month ;
   for (j=1; j<=12;j++)
   {
      monthnum +=1;
      temp=monthnum ;
      if (monthnum<10) temp='0'+monthnum ;
      document.write('<a href="/cgi-bin/Elist.cgi?cc='+EML_CC+'&l='+EML_L+'&com=viewmonth&i='+monthnum+'&date='+cur_year+'-'+temp+'"><img border=0 src="../images/tabs/') ;
      document.write('b') ;
      document.write('Emonth'+monthnum+'.gif" width="30" height="22" alt="'+months[monthnum-1]+'"></a>') ;

      if (monthnum >=12)
      { 
         document.write('<img border=0 src="../images/tabs/bEyear.gif" width="30" height="22" alt="year">') ;
         monthnum = 0;
         cur_year +=1 ;
      }
   }
   document.write('<br>') ;

//   document.write('</td></tr></table>') ;
// -->