﻿/// <reference path="jQuery/jquery-1.6.1.min.js" />
$(document).ready(function () {
    $('#InstallLink').click(function () {
        window.location.href = window.downloadUrl;
    });

    $('.closepopup').click(function () {
        window.location.href = '#';

        // Remove the install=true query string kvp if it is present
        // this ensures that if the user were to refresh their browser
        // after closing the installation prompt that it doesn't reinitiate 
        // the installation procedure.
        window.location.search = window.location.search.replace('&install=true', '');
        return window.startInstall();
    });
});
