// This script will automatically force a redirect from the root domain 
// to the structured domain which includes www. This is to help with 
// Google issues.

var sDomain=document.domain;
var sPath=window.location.pathname;

if (sDomain == "dvelup.com") //this value needs to be the url that is linked from i.e. dvelup.com/*.*
   {
   var sNewURL="http://www.dvelup.com" + sPath;
   window.location = sNewURL;
   //document.write("Will redirect to " + sNewURL);
   }
