function delayLoadThawte() {
        var thawteDiv = document.getElementById('accreditationsThawte');
        script = document.createElement('script');
        script.id = 'ThawteScript';
        script.type = 'text/javascript';
        script.src = "https://seal.thawte.com/getthawteseal?host_name=" + window.location.hostname + "&amp;size=S&amp;lang=en";
        
        var reflowDiv = document.createElement('div');
        reflowDiv.id = 'reflowDiv';
        
        var oldDocWrite = document.write;
        
        document.write = function(content)
        {
                thawteDiv.innerHTML = content;
        };
        
        thawteDiv.appendChild(script);
        var body = document.getElementsByTagName( "body" )[0];
        var bodyClass = body.className;
        body.className = "forceReflow";
        body.className = bodyClass;
}

schedule('window', delayLoadThawte);
