<!-- Hide script

var bd_BaseDate = new Date();

var month = bd_BaseDate.getMonth();
var day   = bd_BaseDate.getDate();
var year  = bd_BaseDate.getFullYear();
if (year < 1900) {year+=1900; } // Fix for Opera version 7.11 and earlier, (years are 103 for 2003, etc.)
var endDay = 0;

function show_AuditoriumLink()
   {
   document.write('<a class="LinkLtBlue" onclick="openWindow(this,\'codepage\')" ');
   document.write('href="http://www.omahacivic.com/Calendar.aspx');
    if (month == 0)
	   document.write('january');
   else
   if (month == 1)
      document.write('february');
   else
   if (month == 2)
	   document.write('march');
   else
   if (month == 3)
      document.write('april');
   else
   if (month == 4)
	  document.write('may');
   else
   if (month == 5)
	  document.write('june');
   else
   if (month == 6)
      document.write('july');
   else
   if (month == 7)
	  document.write('august');
   else
   if (month == 8)
	  document.write('september');
   else
   if (month == 9)
	  document.write('october');
   else
   if (month == 10)
      document.write('november');
   else
   if (month == 11)
      document.write('december');
   document.write(year+'default.htm">Civic Auditorium Events</a>');
   }


    
//alert("Month is "+month+" and day is "+day);

if  ((year >= 2006) && (year <= 2010))
   {
   document.write('<a class="LinkLtBlue" onclick="openWindow(this,\'codepage\')" ');
   document.write('href="http://www.omahacivic.com/Calendar.aspx">Civic Auditorium Events</a>');
   }
else
if (year >= 2011)
   {
   document.write('<a class="LinkLtBlue" onclick="openWindow(this,\'codepage\')" ');
   document.write('href="http://www.omahacivic.com/Calendar.aspx">Civic Auditorium Events</a>');
   }
else
   show_AuditoriumLink();

// Stop hiding -->
