function AboutCU(IsSidebar) {
   var header = '<div class="Heading3">About ConnectUtilities</div>';
   var about = '<p>ConnectUtilities, LLC has successfully assisted hundreds of thousands of moving customers nationwide by consolidating the utility, home service and subscription scheduling process into a single website that allows you to shop, request, and schedule your electricity, gas, phone, cable, satellite, Internet, newspaper subscriptions and more.  It takes just minutes to submit a service request instead of the traditional hours of waiting on hold.  Shop from over 40,000 service offerings, receive special web promotions, and most importantly save hours of valuable time.  <i>Let ConnectUtilities.com help you now!</i></p>';

   document.write(header);
   document.write(about);
   return true;
}


// *** Used only in /directory/ ***
function DirectoryValidate() {
   var curzip=true;
   var newzip=true;
   var purpose=true;
   var message;
   var tempstring;

   if(!document.step1.NewZip.disabled) {
      tempstring = document.step1.NewZip.value;
      if(!(document.step1.NewZip.value < 99999 && document.step1.NewZip.value > 00000 && tempstring.length == 5)) {
         newzip = false;
      }
   }

   if (newzip) {
      return true;
   } else {
      message = "Your new zip code must be a 5-digit number.";
      alert(message);
      return false;
   }
}

