<!-- Begin <script type="text/javascript" src="lrbc_copyright.js"></script>
   var crtext;
   var lutime;
   var ludy;
   function sstr(a,b){ //extract substrings
       ret=lutime.substring(a,b);
       if (ret=="Jan" || ret=="01") ret="1";
       if (ret=="Feb" || ret=="02") ret="2";
       if (ret=="Mar" || ret=="03" || ret=="Mrz") ret="3";
       if (ret=="Apr" || ret=="04") ret="4";
       if (ret=="May" || ret=="05" || ret=="Mai") ret="5";
       if (ret=="Jun" || ret=="06") ret="6";
       if (ret=="Jul" || ret=="07") ret="7";
       if (ret=="Aug" || ret=="08") ret="8";
       if (ret=="Sep" || ret=="09") ret="9";
       if (ret=="Oct" || ret=="Okt") ret="10";
       if (ret=="Nov") ret="11";
       if (ret=="Dec" || ret=="Dez") ret="12";
       return ret;
   }

   lutime = unescape(document.lastModified);
   if (lutime.length == 17) { // Netscape 3 and higher, Internet Explorer 4
   ludy = sstr(6,8);
   }
   if (lutime.length == 19) { // Netscape 3 and higher, Internet Explorer 4 and higher, 4-digit year
   ludy = sstr(6,10);
   }
   if (lutime.length == 25 || lutime.length == 24) { // Netscape 2
   ludy = sstr(20,24);
   }
   if (lutime.length == 29) { // Opera 3
   ludy = sstr(12,16);
   }
   if (lutime.length == 23) { // Internet Explorer 3
   ludy = sstr(19,23);
   }
   crtext = "";
   yearNow = null
   if (ludy.length==2) {
   if (ludy >= 90) {
   yearNow = 19
   }
   else {
   yearNow = 20
   }
   }
   else yearNow=""
   crtext +=  "<font size=1>Entire Site Copyright </font><font size=2>&copy;</font><font size=1>" + " 2001-" + yearNow + ludy + ", Little Rock Bop Club, All Rights Reserved.</font>";
   document.write(crtext);
//  End -->