﻿// JScript File

var _downloadURL = "/_formDownload/d";
_downloadURL = _downloadURL += ".ashx";

$(document).ready(function(){

        $("a.formLink").each(

            function (intIndex) {

                var thisUrl = $(this).attr("title");
                $(this).attr("href",_downloadURL + "?f=" + thisUrl);
                

            })

    }
);

