﻿
    //Start common code
    function updateDetailsBox() {
        jQuery("#updateDetailsContainer").addClass("hasJavascript");
        jQuery("#updateDetailsNo").removeClass("hideButton");
        positionBox();
    };

    function positionBox() {
        var scrollTopVariable = jQuery(window).scrollTop();
        var width = jQuery(window).width();
        var height = jQuery(window).height();
        var xOffset = (width / 2) - (160);
        var yOffset = (height / 2) - (100) + scrollTopVariable;
        jQuery("#updateDetails").css("left", xOffset).css("top", yOffset);
    };

    $(document).ready(function() {
        jQuery("#updateDetailsNo").click(function() {
            jQuery("#updateDetails").remove();
            return false;
        });
    });

