// JavaScript Document

function selectToFlash() {

    //get the id and the text from the dropdown
    var whichOption = document.getElementById('cat_id').selectedIndex;
    var text = document.getElementById('cat_id').options[whichOption].text;
    var id = document.getElementById('cat_id').options[whichOption].value;

    if (id != '') {

    //get ref to Flash
    if (navigator.appName.indexOf("Microsoft Internet") > -1) {
        var swf = document.getElementById('selector');
    } else if ((navigator.userAgent.indexOf('Safari') > -1)) {
        var swf = document.getElementsByName('selectorN')[0]
    } else if ((navigator.userAgent.indexOf('Firefox') > -1)) {
        var swf = document.getElementsByName('selectorN')[0]
    }

    swf.selectFromJS(id);

    //set the text in the selector box
    //document.getElementById('currentSelection').innerHTML = text;
    document.reg_form.currentSelection.value = text;

    }

}

function selectFromFlash(whichID) {
    //set the dropdown menu

    for (var x = 0; x < document.getElementById('cat_id').options.length; x++) {
        if (document.getElementById('cat_id').options[x].value == whichID) {
            document.getElementById('cat_id').options[x].selected = true;
        }
    }

    var text = document.getElementById('cat_id').options[document.getElementById('cat_id').selectedIndex].text;
    //set the text in the selector box

    //document.getElementById('currentSelection').innerHTML = text;
    document.reg_form.currentSelection.value = text;
}


