var maxdiv=6;

function show(index)
      {
	for (i=1;i<=maxdiv;i++) 
            document.getElementById('div'+i).className='divoff'; 
	    document.getElementById('div'+index).className='divon';
	}

function hide(index)
	{
	    document.getElementById('div'+index).className='divoff';
	}
