<!--
    seal_installSeal();
    
    function seal_getFlashVersion() {
        var version = 0;
        if (navigator.plugins && navigator.mimeTypes.length) {
            var plugin = navigator.plugins["Shockwave Flash"];
            if (plugin && plugin.description) {
                version = parseInt(plugin.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split(".")[0]);
            }
        }
        else {
            try {
                var flashObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
            }
            catch (e) {
                try {
                    var flashObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                    version = 6;
                    flashObj.AllowScriptAccess = "always";
                }
                catch (e) {
                    if (version == 6) {
                        return version;
                    }
                }
                try {
                    flashObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                }
                catch (e) {}
            }
            if (flashObj != null) {
                version = parseInt(flashObj.GetVariable("$version").split(" ")[1].split(",")[0]);
            }
        }
        return version;
    }
    
    function seal_useFlash() {
        var minVersion = 8;
        var resellerId = "1";
        var sealVersion = "1";
        var useFlashPref = "false";
        
        return useFlashPref == "true" && (resellerId == "1" || sealVersion == "0") && self == top && minVersion <= seal_getFlashVersion();
    }
    
    function seal_installSeal() {
        var commonName = "www.macnichol.com";
        var org = "www.macnichol.com";
        var resellerId = "1";
        var sealVersion = "1";
        var isEV = "false";
        var requiresFilter = "false";
        var sealName = "siteseal_gd_1_h_s_dv_iv";
        var flashUrl = "https://seal.godaddy.com:443/flash/1/siteseal_gd_1_h_s_dv_iv.swf";
        var imageUrl = "https://seal.godaddy.com:443/images/1/siteseal_gd_1_h_s_dv_iv.png";
        var sealWidth = "115";
        var sealHeight = "60";
        var sealType = "dv";
        
        if (seal_useFlash()) {
            document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="' + sealWidth + '" height="' + sealHeight + '" id="' + sealName + '" align="middle">');
            document.write('<param name="movie" value="' + flashUrl);
            
            if (sealVersion == "0" && sealType == "dv")
                document.write('?domainName=' + commonName + '&color=000000');
            else if (sealVersion == "0" && (sealType == "iv" || sealType == "ev"))
                document.write('?companyName=' + commonName + ' - ' + org);
                
            document.write('" />');
            document.write('<param name="quality" value="high" />');
            document.write('<param name="AllowScriptAccess" value="always" />');
            
            if (sealVersion == "0" && (sealType == "iv" || sealType == "ev"))
                document.write('<param name="bgcolor" value="#333333" />');
            else
                document.write('<param name="wmode" value="transparent" />');
                
            document.write('<embed src="' + flashUrl);
            
            if (sealVersion == "0" && (sealType == "iv" || sealType == "ev"))
                document.write('?companyName=' + commonName + ' - ' + org + '" bgcolor="#333333"');
            else {
                if (sealVersion == "0" && sealType == "dv")
                    document.write('?domainName=' + commonName + '&color=000000');
                document.write('" wmode="transparent"');
            }
            
            document.write(' quality="high" width="' + sealWidth + '" height="' + sealHeight + '" name="' + sealName + '" align="middle" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" AllowScriptAccess="always" />');
            document.write('</object>');
        }
        else if (requiresFilter == "true" && document.body && document.body.filters)
            document.write('<span style="display:inline-block;cursor:pointer;cursor:hand;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + imageUrl + '\', sizingMethod=\'crop\');width:' + sealWidth + 'px;height:' + sealHeight + 'px;" onclick="verifySeal();"></span>');
        else
            document.write('<img style="cursor:pointer;cursor:hand" width="' + sealWidth + '" height="' + sealHeight + '" src="' + imageUrl + '" onclick="verifySeal();"/>');
    
        if (isEV == "true") {
            if (resellerId == "1")
                document.write('<img src="https://evbeacon.godaddy.com/images/spacer.gif"/>');
            else
                document.write('<img src="https://evbeacon.starfieldtech.com/images/spacer.gif"/>');
        }
    }
    
    function verifySeal() {
        var bgHeight = "433";
        var bgWidth = "592";
        var url = "https://seal.godaddy.com:443/verifySeal?sealID=YiLkxGO1u9Z1MRRVyK1hblrP5TL2W0NPMmzIyCdWonZXgg4w4mYTHd";
        window.open(url,'SealVerfication','location=yes,status=yes,resizable=yes,scrollbars=no,width=' + bgWidth + ',height=' + bgHeight);
    }
// -->
