var _idAttribute = 0;
function ClickMenuOrizontal(idAttribute)
{
    obClick = document.getElementById('spShow' + idAttribute);
    obList = document.getElementById('ulAttribute' + idAttribute);
    if (obClick!=null)
    {
        if (obClick.className =='')
        {
             obClick.className ='close';
             obList.style.display = 'block';
        }
        else
        {
             obClick.className ='';
             obList.style.display = 'none';
        }
    }
}
function SetValueList(sIdHiddenField,sIdLabel,value,text,idAttribute)
{
    obH = document.getElementById(sIdHiddenField);
    obL = document.getElementById(sIdLabel);
    if (obH!=null && obL!=null)
    {
        obH.value = value;
        obL.innerHTML = text;
    }
    ClickMenuOrizontal(idAttribute);
    
}
