﻿

function showItem(id)
{if(document.getElementById(id).className=='dynExpandableContentAndFAQAnswerShow')
{document.getElementById(id).className='dynExpandableContentAndFAQAnswerHide';var icon=document.getElementById(id+'_icon');if(icon&&icon.className)
{icon.className='expandIcon';}}
else
{document.getElementById(id).className='dynExpandableContentAndFAQAnswerShow';var icon=document.getElementById(id+'_icon');if(icon&&icon.className)
{icon.className='unExpandIcon';}}}
function showAllContent(groupName)
{var i=1;var showItem=document.getElementById(groupName+i);while(showItem!=null)
{showItem.className='dynExpandableContentAndFAQAnswerShow';i++;showItem=document.getElementById(groupName+i);}}
function hideAllContent(groupName)
{var i=1;var showItem=document.getElementById(groupName+i);while(showItem!=null)
{showItem.className='dynExpandableContentAndFAQAnswerHide';i++;showItem=document.getElementById(groupName+i);}}
