
// Create array to hold four URLs;
var dest = new Array(11);
dest[0] = window.location.href;
dest[1] = "download/salson_contact_list.pdf";
dest[2] = "download/salson_claim_form.pdf";
dest[3] = "download/salson_cert_insurance.pdf";
dest[4] = "download/salson_dot_rating.pdf";
dest[5] = "download/DriversApplication.pdf";
dest[6] = "download/salson_warehouse_app.pdf";
dest[7] = "download/salson_credit_app.pdf";
dest[8] = "download/salson_rules_tariff.pdf";
dest[9] = "download/LTL_Container_Drayage_Fuel_surcharge.pdf";
dest[10] = "download/Truckload_Fuel_Surcharge_Matrix.pdf";
dest[11] = "download/BOL.pdf";

function go(d) {

// Change location of current window one selected from menu
// d.menu.options.selectedIndex returns a number that corresponds
// to the choice they selected in the pop up menu on the form
// If a user selected the first choice, selectedIndex = 0 and the 
// URL will be set to dest[0] or http://www....


window.location.href = dest[d.destination.options.selectedIndex];      

// Open new window with selected location
// var x = window.open(dest[d.destination.options.selectedIndex],"New Window");

// To set the URL for another frame in this frameset
// top.framename.location.href = dest[d.menu.options.selectedIndex]);

}

