﻿// Fixes the goDaddy seal that causes layout issues when godaddy site running slow.
function fixseal() {

    var s_html
    var o_gd = document.getElementById("godaddy");

    if (o_gd) {
        s_html = o_gd.innerHTML;
        var o_seal = document.getElementById("siteseal");

        if (o_seal) {
            o_seal.innerHTML = s_html;
        }
    }
}
