﻿//-------------------------------------------------------------------------------------
// Krmiljenje strani s filtrom za omejitev izpisa v katalogu rablejnih viličarjev
//-------------------------------------------------------------------------------------
function ChangeForkLiftFilter(form) {

    var PAGE_ID = document.FilterForm.txtPageID.value;
    var ZNAMKA = document.FilterForm.cboZnamka.options[document.FilterForm.cboZnamka.selectedIndex].value;
    var MOTOR = document.FilterForm.cboVrstaMotorja.options[document.FilterForm.cboVrstaMotorja.selectedIndex].value;

    var NOSILNOST = document.FilterForm.cboNosilnost.options[document.FilterForm.cboNosilnost.selectedIndex].value;
    var TIP_TELESKOPA = document.FilterForm.cboTipTeleskopa.options[document.FilterForm.cboTipTeleskopa.selectedIndex].value;
    var VRSTA_TELESKOPA = document.FilterForm.cboVrstaTeleskopa.options[document.FilterForm.cboVrstaTeleskopa.selectedIndex].value;

    window.location.href = "/default.asp?page_id=" + PAGE_ID + "&cboZnamka=" + ZNAMKA + "&cboVrstaMotorja=" + MOTOR + "&cboNosilnost=" + NOSILNOST + "&cboTipTeleskopa=" + TIP_TELESKOPA + "&cboVrstaTeleskopa=" + VRSTA_TELESKOPA ;

}


