﻿// JScript File

function getFiber() {
    var f = document.getElementById('uiFiber');
    
    if(f) {
        var id = f.options[f.selectedIndex].value;
        var name = f.options[f.selectedIndex].text;
        document.location = 'yarn_fiber.asp?id=' + id + '&n=' + name;
    }
    
}

function getManufacturer() {
    var m = document.getElementById('uiManufacturer');
    
    if(m) {
        var id = m.options[m.selectedIndex].value;
        var name = m.options[m.selectedIndex].text;
        document.location = 'yarn_vendor.asp?id=' + id + '&n=' + name;
    }
}

function getAccessory() {
    var a = document.getElementById('uiAccessory');
    
    if(a) {
        var id = a.options[a.selectedIndex].value;
        var name = a.options[a.selectedIndex].text;
        document.location = 'accessory_results.asp?id=' + id + '&n=' + name;
    }
}