<!--
function bd_setpage(page)
   {
   var page;

   var hosturl = new String(document.location.hostname);
       hosturl = hosturl.toLowerCase();
   if (hosturl.indexOf("gcsrss.com") == -1)
      {
         // Local
      if (parent.location.href == self.location.href)
         {
         if (window.location.replace)
            window.location.replace(page);
       else
           // causes problems with back button, but works
           window.location.href = page;
         }
      }
   else
      {
      if (parent.location.href == self.location.href)
         {
         if (window.location.replace)
            window.location.replace(page);
       else
           // causes problems with back button, but works
           window.location.href = page;
         }
      }
   }
//  -->
