<!--
    function objectSelected( obj, selectedVal ) {
        if ( typeof ( obj ) == "object" ) {
            for (i=0 ; i<obj.length; i++) {
                if ( obj[i].value == selectedVal ){
    //                        alert ( document.MyForm.retriveYear[i].value );
                    obj.selectedIndex = i;
                    break;
                } else {
                    obj.selectedIndex = 0;
                }
            }
        }
    }
    function objectMutiSelected ( obj, selectedVal ) {

        if ( typeof ( obj ) == "object" ) {
            for (i=0 ; i<obj.length; i++) {
                if ( obj.options[i].value == selectedVal ){
                    obj.options[i].selected = true;
                    break;
                }
            }
        }
    }

    function objectMutiSelectClear ( obj ) {

        if ( typeof ( obj ) == "object" ) {
            for (i=0 ; i<obj.length; i++) {
                obj.options[i].selected = false;
            }
        }
    }
//-->
