function swap(targetId, targetId2){
  if (document.getElementById){
		
        target = document.getElementById(targetId);
        target2 = document.getElementById(targetId2);
		
		target5 = document.getElementById("footer");
			
			target3 = document.getElementById('bloccoc_offerte');
			target3.style.display = "none";
			
			target3 = document.getElementById('blocco_famiglia');
			target3.style.display = "none";
			
			target3 = document.getElementById('blocco_ufficio');
			target3.style.display = "none";
			
			target3 = document.getElementById('blocco_aziende');
			target3.style.display = "none";
		
			
			target4 = document.getElementById('ordini_offerte');
			target4.className = "";
			
			target4 = document.getElementById('ordini_famiglia');
			target4.className = "";
			
			target4 = document.getElementById('ordini_ufficio');
			target4.className = "";
			
			target4 = document.getElementById('ordini_aziende');
			target4.className = "";
        
            
			if (target.style.display == "none"){
                target.style.display = ""; 
				target5.style.bottom = "0"; //per risolvere errore in IE 6 che non fa scendere il footer
            } else  {
                target.style.display = "none"; 
				target5.style.bottom = ""; //per risolvere errore in IE 6 che non fa scendere il footer
            }
			
			if (target2.className == "sel"){
				target2.className = "";
			} else {
				target2.className = "sel";	
			}
                
  }
}

function swapRequisiti(targetId){
  
  	if (document.getElementById){
        target = document.getElementById(targetId);
		
		if (target.style.display == "none"){
			target.style.display = "";
		} else {
			target.style.display = "none";
		}
			
	}
}


function swapInfo(targetId, targetId2){

//alert (targetId2);	
  
  if (document.getElementById)
        {
        target = document.getElementById(targetId);
        target2 = document.getElementById(targetId2);
		
		target3 = document.getElementById("footer");
        
		if (target.style.display == "none")
			{
			target.style.display = "";
			target2.innerHTML = "- Info"; 
			target3.style.bottom = "0"; //per risolvere errore in IE 6 che non fa scendere il footer
		} else {
			target.style.display = "none";
			target2.innerHTML = "+ Info"; 
			target3.style.bottom = ""; //per risolvere errore in IE 6 che non fa scendere il footer
		}
                
        }
}


function swapCategoria(targetId,targetId2){
  
  if (document.getElementById)
        {
        target = document.getElementById(targetId);
		target2 = document.getElementById(targetId2);
		
		target3 = document.getElementById("footer");
		
        
		if (target.style.display == "none"){
			target.style.display = ""; 
			target3.style.bottom = "0"; //per risolvere errore in IE 6 che non fa scendere il footer
		} else {
			target.style.display = "none"; 
			target3.style.bottom = ""; //per risolvere errore in IE 6 che non fa scendere il footer
		}
		
		
		if (target2.className == "sel"){
			target2.className = "";
		} else {
			target2.className = "sel";	
		}
                
   }
}

function swapForm(targetId, targetId2){
  
  if (document.getElementById)
        {
        target = document.getElementById(targetId);
        target2 = document.getElementById(targetId2);
		
		target3 = document.getElementById("footer");
        
            if (target.style.display == "none"){
                target.style.display = ""; 
				target2.innerHTML = "Chiudi";
				target3.style.bottom = "0"; //per risolvere errore in IE 6 che non fa scendere il footer
            } else {
                target.style.display = "none"; 
				target2.innerHTML = "Richiedi info su questo prodotto";
				target3.style.bottom = ""; //per risolvere errore in IE 6 che non fa scendere il footer
            }
                
        }	
}
