﻿$(document).ready(function() {
    $("#go_button").click(function() {
        var year = $("#droplist").val();
        url = "/extranet/Articles?PID=" + $("#droplist").attr("class") + "&year=" + year;
        window.location = url;
    });
    
    $("#all").click(function(){
        $("#tableform input[type=checkbox]").attr("checked",true);
        return false;
    });
    
    
    $("#none").click(function(){
        $("#tableform input[type=checkbox]").attr("checked",false);    
        return false;
    });
});
