// add www to the url if enter without it
// use: <script src="/htm-webaxy/javascript/addwww.js"></script>
var url = location.href;
if (url.search(/^https?:\/\/www/i) != 0)  {
  url = url.replace(/:\/\//,"://www.");
  location.replace(url);
}

