/*
 gestione paginazione elenco
*/
var idOn = 1
var divName = 'boxelenco'
var menuName = 'pagg'

function showItem(id)
{   
  if (id == idOn ) return;
  
  if (document.getElementById) {
		thisObj   = document.getElementById(divName+id)
		oldObj    = document.getElementById(divName+idOn)
		thisMenu  = document.getElementById(menuName+id)
		oldMenu   = document.getElementById(menuName+idOn)
		thisObj.style.display = 'block'
		oldObj.style.display = 'none'
		thisMenu.className='on'
		oldMenu.className='off'
		idOn = id		
	}
}



