function movignette(id,state){
                 if(state){
                        document.getElementById('tbl_'+id).style.backgroundColor='#efe3f3';
                        document.getElementById('comp_'+id).style.backgroundColor='white';
                        document.getElementById('lnk1_'+id).style.color='#6b2f86';
                        document.getElementById('lnk2_'+id).style.color='#6b2f86';
                 }else{
                        document.getElementById('tbl_'+id).style.backgroundColor='';
                        document.getElementById('comp_'+id).style.backgroundColor='';
                        document.getElementById('lnk1_'+id).style.color='';
                        document.getElementById('lnk2_'+id).style.color='';
                 }
}

function showcomplist(id,state){
         div=document.getElementById(id);
         if(state){
         div.style.position='absolute';
         div.style.height='96px';
         div.style.zIndex=5;
         }else{
         div.style.position='relative';
         div.style.height='46px';
         div.style.zIndex=2;
         }

}


