function display_panel(panel_name) {
	panel_id = document.getElementById(panel_name) ;
	
	if(panel_id != null && panel_id != 'undefined') {

		// top
		if (panel_name == 'produit_form_avis') {
			panel_produit = document.getElementById('produit_form_achat') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_avis_ok') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_recommander') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_recommander_ok') ;
			panel_produit.style.display = 'none' ;
		}
		else if (panel_name == 'produit_form_achat') {
			panel_produit = document.getElementById('produit_form_avis') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_avis_ok') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_recommander') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_recommander_ok') ;
			panel_produit.style.display = 'none' ;
		}

		// left
		else if (panel_name == 'produit_form_recommander') {
			panel_produit = document.getElementById('produit_form_avis') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_avis_ok') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_achat') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_form_recommander_ok') ;
			panel_produit.style.display = 'none' ;
		}
				
		// bottom
		else if(panel_name == 'produit_onglets_descriptif') {
			panel_produit = document.getElementById('produit_onglets_avis') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_onglets_savoir') ;
			panel_produit.style.display = 'none' ;
		}
		else if(panel_name == 'produit_onglets_avis') {
			panel_produit = document.getElementById('produit_onglets_descriptif') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_onglets_savoir') ;
			panel_produit.style.display = 'none' ;
		}
		else if(panel_name == 'produit_onglets_savoir') {
			panel_produit = document.getElementById('produit_onglets_descriptif') ;
			panel_produit.style.display = 'none' ;
			panel_produit = document.getElementById('produit_onglets_avis') ;
			panel_produit.style.display = 'none' ;
		}
		
		// listing produit
		else if(panel_name == 'category_listing_liste') {
			panel_produit = document.getElementById('category_listing_mosaique') ;
			panel_produit.style.display = 'none' ;
			img_produit = document.getElementById('img_category_listing_liste') ;
			img_produit.src = '1/images/category_liste_on.gif' ;
			img_produit = document.getElementById('img_category_listing_mosaique') ;
			img_produit.src = '1/images/category_mosaique_off.gif' ;
		}
		else if(panel_name == 'category_listing_mosaique') {
			panel_produit = document.getElementById('category_listing_liste') ;
			panel_produit.style.display = 'none' ;
			img_produit = document.getElementById('img_category_listing_liste') ;
			img_produit.src = '1/images/category_liste_off.gif' ;
			img_produit = document.getElementById('img_category_listing_mosaique') ;
			img_produit.src = '1/images/category_mosaique_on.gif' ;
		}
		
		panel_id.style.display = 'block' ;
		
	}
}


/** les/more sur le quantity de la fiche produit */
function panier_quantity(input_quantity_name, qte) {
	quantity_field = document.getElementById(input_quantity_name) ;
	quantity_value = parseFloat(quantity_field.value) ;
	quantity_value += parseFloat(qte) ;
	if(quantity_value <= 0) quantity_value = parseFloat(1) ;
	quantity_field.value = parseFloat(quantity_value) ;
}
