﻿


// tarifa medunarodni
P = {
    Container : "pricecontainer",
    Select : null,
    SelectedRow : null,
    Show : function() {
        if( !document.getElementById ) return;
        if( P.SelectedRow ) {
            //P.SelectedRow.className = "";
             P.SelectedRow.bgColor  = "#f1f1f1";
        };
        if( !P.Select ) {
            P.Select = document.getElementById( P.Container ).getElementsByTagName( "select" )[ 0 ];
        };
        var rowId = P.Select.options[ P.Select.selectedIndex ].value;
        P.SelectedRow = document.getElementById( rowId )
        //if (P.SelectedRow ) P.SelectedRow.className = "SelectedZone";
        if (P.SelectedRow ) P.SelectedRow.bgColor  = "#e2e2e2";
    }
};