function ShowHideChild(controlId,imgId)
{
    var control = document.getElementById(controlId);
    var imgcontrol = document.getElementById(imgId);
    var imgPath='';
    
    if(control!=null)
    {               
        if(control.style.display=='none')
        {
            if(controlId.split('_').length==3)
                document.getElementById('selectedyear').value = controlId;
            else
                document.getElementById('selectedmonth').value = controlId;
                          
            control.style.display='';            
            imgPath='http://renaisi.adsgrp.com/wp-content/themes/renaisi/images/DownArrow.gif';
        }
        else
        {
            control.style.display='none'; 
            imgPath='http://renaisi.adsgrp.com/wp-content/themes/renaisi/images/RightArrow.gif';
        }                        
    }
    
    if(imgcontrol!=null)
    {               
        imgcontrol.src = imgPath;
    }    
}

function DisplaySelectedItem()
{
    if(document.getElementById('selectedyear')!=null)
    {
        if(document.getElementById('selectedyear').value!='')
            var selectedyear = document.getElementById(document.getElementById('selectedyear').value);
    }
    
    if(document.getElementById('selectedmonth')!=null)
    {
        if(document.getElementById('selectedmonth').value!='')             
            var selectedmonth = document.getElementById(document.getElementById('selectedmonth').value);
    }
    
    if(document.getElementById('imgselectedyear')!=null)
    {
        if(document.getElementById('imgselectedyear').value!='')
            var imgselectedyear = document.getElementById(document.getElementById('imgselectedyear').value);
    }
    
    if(document.getElementById('imgselectedmonth')!=null)
    {
        if(document.getElementById('imgselectedmonth').value!='')             
            var imgselectedmonth = document.getElementById(document.getElementById('imgselectedmonth').value);
    }
        
    if(selectedyear!=null)
    {
       selectedyear.style.display='';
    }
      
    if(selectedmonth!=null)    
    {
       selectedmonth.style.display='';    
    }
        
    if(imgselectedyear!=null)
    {
       imgselectedyear.src='http://renaisi.adsgrp.com/wp-content/themes/renaisi/images/DownArrow.gif';
    }
      
    if(imgselectedmonth!=null)    
    {
       imgselectedmonth.src='http://renaisi.adsgrp.com/wp-content/themes/renaisi/images/DownArrow.gif';    
    }    
}