
/**
 * Pri zmene zeme se ovlivnuje zobrazeni plateb/doprav na vyber.
 */
function countryInducePS(selectCountry, countries)
{
    var countryId = selectCountry.value;

    for( i=0; i < countries.length; i++ )
    {
        document.getElementById('ps' + countries[i]).style.display = 'none';
    }

    document.getElementById('ps' + countryId).style.display = 'block';
}

function registrationInfoSwitch(switchFlag)
{
    if( switchFlag.checked )
    {
        document.getElementById('fPasswordLine1').style.display = 'table-row';
        document.getElementById('fPasswordLine2').style.display = 'table-row';
        document.getElementById('fNewsSendFlag').style.display = 'table-row';
    }
    else
    {
        document.getElementById('fPasswordLine1').style.display = 'none';
        document.getElementById('fPasswordLine2').style.display = 'none';
        document.getElementById('fNewsSendFlag').style.display = 'none';
    }
}


var bothParams = false;

function toggleBothParams(attributeIDs)
{
    if( bothParams == false )
    { //nabidnout moznost obou parametru

        document.getElementById("fTextChooseVariant1").setAttribute('class', 'product-variant-info-on');
        document.getElementById("fTextCount1").setAttribute('class', 'product-count-info-on');

        document.getElementById("eyePic1").src = "/application/layouts/images/shop/eye-left.png";

        var fCntSelect = document.getElementsByName("fCntProducts");
        fCntSelect[0].disabled = false;

        for( i=0; i < attributeIDs.length; i++ )
        {
            tmpId = attributeIDs[i];

            if( tmpId != -1 )
                document.getElementById("fIdAttribute[" + tmpId + "]").disabled = false;
        }

        bothParams = true;
    }
    else
    { //skryt moznost obou parametru
        document.getElementById("fTextChooseVariant1").setAttribute('class', 'product-variant-info-off');
        document.getElementById("fTextCount1").setAttribute('class', 'product-count-info-off');

        document.getElementById("eyePic1").src = "/application/layouts/images/shop/eye-left-off.png";

        var fCntSelect = document.getElementsByName("fCntProducts");
        fCntSelect[0].disabled = true;

        for( i=0; i < attributeIDs.length; i++ )
        {
            tmpId = attributeIDs[i];

            if( tmpId != -1 )
                document.getElementById("fIdAttribute[" + tmpId + "]").disabled = true;
        }

        bothParams = false;
    }
}
