function toggle(id){
   if (document.all){
     //if(document.all[id].style.display == 'none'){
	   hideAll();
       document.all[id].style.display = 'block';
     //} else {
     //  document.all[id].style.display = 'none';
     //}
  return false;
   } else if (document.getElementById){
     //if(document.getElementById(id).style.display == 'none'){
	   hideAll();
       document.getElementById(id).style.display = 'block';
     //} else {
     //  document.getElementById(id).style.display = 'none';
     //}
  return false;
   }
 }
 
 function hideAll(){
 	if (document.all){
	  document.all['tab_01'].style.display = 'none';
	  document.all['tab_02'].style.display = 'none';
//	  document.all['tab_03'].style.display = 'none';
	} else {
	  document.getElementById('tab_01').style.display = 'none';
	  document.getElementById('tab_02').style.display = 'none';
//	  document.getElementById('tab_03').style.display = 'none';
	}
 }
 
 function trispide(idBottone){
 	if (idBottone == 'btn1'){
		if (document.all){
			document.all['btn1'].className='selezionato';
			document.all['btn2'].className='';
//			document.all['btn3'].className='';
		} else {
			document.getElementById('btn1').className='selezionato';
			document.getElementById('btn2').className='';
//			document.getElementById('btn3').className='';
		}
	} else if (idBottone == 'btn2'){
		if (document.all){
			document.all['btn1'].className='';
			document.all['btn2'].className='selezionato';
//			document.all['btn3'].className='';
		} else {
			document.getElementById('btn1').className='';
			document.getElementById('btn2').className='selezionato';
//			document.getElementById('btn3').className='';
		}
	} else {
		if (document.all){
			document.all['btn1'].className='';
			document.all['btn2'].className='';
//			document.all['btn3'].className='selezionato';
		} else {
			document.getElementById('btn1').className='';
			document.getElementById('btn2').className='';
//			document.getElementById('btn3').className='selezionato';
		}
	}
 }