﻿/*
$(document).ready(function() {
    $("select option").removeAttr('selected');
});

$(window).unload(function() {
    $("select option:first").attr('selected','selected');
});
*/



function Redirect(dropdown) {
    var target = $("#" + dropdown);

    if (target.val() != 'undefined')
        window.location = target.val();
}
