﻿function showIbriiBarInstallCode() {
    if (pageTracker) {
        pageTracker._trackPageview("/install/installButtonClick");
        pageTracker._trackEvent("install", "installButtonClick", "Register.aspx");
    }
    var instrSrc = "\/internal\/showInstallIstructions";
    $.get(instrSrc, function (data) {
        var instrObj = $(data);
        $("body").append(instrObj);
        window.location = window.location + "#installClipper";
    });
}



function hideContinueButton() {
   


    setTimeout(function () {
        var completedMessage = $(".completedMessage");
        var continueButton = $("#ctl00_ContentPlaceHolder1_CreateUserWizard1_CompleteStepContainer_ContinueButton");
        var waitMessage = $(".waitMessage");

        completedMessage.show();
        continueButton.removeClass("hidden");
        waitMessage.hide();

    }, 5000);





 }

//$(document).ready(function () {

//    $("#ctl00_ContentPlaceHolder1_CreateUserWizard1___CustomNav0_StepNextButtonButton").attr("value", "Sign up and enable ibrii");

//});