/*
    Coded by Steven Bower (cc) 2010
    BPWebDesign http://bpwebdesign.com/
    TurnWheel Designs http://turnwheel.com/
*/

$(function() {
    // When a option is slected, open the file
    // in a separate window
    $('#viewform').click(function() {
        var val = $('#selectform').val();
        if (val != '') {
            window.open('/pdfs/'+val,'tsci_'+Math.round(Math.random()*11));
        }
        return false;
    });
});