//hide  scripts from old browsers

       document.write('<hr><p style="font-size:10.0pt;font-family:Arial; color:#FFFF00"> &copy; 2005-2010  by MUFON Sacramento;<BR>');
       document.write('<A HREF=" mailto:info@mufonsacramento.info">');
       document.write('info@mufonsacramento.info</A><br>');
       document.write('<A HREF="http://www.mufonsacramento.info">');
       document.write('www.MUFONsacramento.info</A><p>');

       // append a modification date only if server provides a valid date
       if (Date.parse(document.lastModified) > 0) {
               document.write('<p style="font-size:10.0pt;font-family:Arial; color:#FFFF00">last modified: ' 
                 + document.lastModified + '</p>');
       }

       // extract proper URL from this file name, assuming this file
       // is "proj_footer.html" or "proj_footer.htm"
       // and the proper URL for the frameset is "proj.html" or "proj.htm"
       myURL = document.location.href;

       // Get the suffix on the file name (everything after "_footer")
       myExt = myURL.substring(myURL.indexOf("_footer") + 7, myURL.length) 

       // Get the part of the URL that goes up to "proj"
       myUrl = myURL.substring(0,myURL.indexOf("_footer"))

       // Assemble the appropriate string
       document.write('<p style="font-size:10.0pt;font-family:Arial; color:#FFFF00"><B>URL: </B>' + myUrl + myExt + '<P>');  

       // done hiding from old browsers