/**************************************************
	CREUNA AS, juli 2008
***************************************************/
function showall(v)
{
    
   document.getElementById(v).style.display ='block';
}

function hideall(v)
{
    
    document.getElementById(v).style.display ='none';
}

function ShowAllAndSwitchLink(v)
{
    showall(v);document.getElementById('lnkhideall'+v).style.display = 'inline';
    document.getElementById('lnkshowall'+v).style.display = 'none';
}

function HideAllAndSwitchLink(v)
{
    hideall(v);document.getElementById('lnkhideall'+v).style.display = 'none';
    document.getElementById('lnkshowall'+v).style.display = 'inline';
}

