var fenetre_identification;
var fenetre_impression_commande;
var fenetre_rappel_commande;
var fenetre_rappel_facture;

function ajout_fav() {
	window.external.AddFavorite('http://bougielumiere.fr','BougieLumiere.fr | Vente en ligne de materiels électrique, éclairage, plomberie, sanitaire, chauffage, climatisation, outillage');	
}

function oublier_identification() {

	if ((fenetre_identification) && (!fenetre_identification.closed)) fenetre_passe.close();
	fenetre_identification=window.open('oublier-identification.php','','scrollbars=no,resizable=no,toolbar=no,width=400,height=260');	
}
	
function impression_commande() {

if ( (fenetre_impression_commande) && (!fenetre_impression_commande.closed)) fenetre_impression_commande.close();
fenetre_impression_commande=window.open('impression-commande.php','','scrollbars=yes,resizable=yes,toolbar=no,width=840,height=820');	
}

function rappel_commande(selection) {

if ( (fenetre_rappel_commande) && (!fenetre_rappel_commande.closed)) fenetre_rappel_commande.close();
fenetre_rappel_commande=window.open('rappel-commande.php?numero='+selection,'','scrollbars=yes,resizable=yes,toolbar=no,width=840,height=820');	
}

function rappel_facture(selection) {

if ( (fenetre_rappel_facture) && (!fenetre_rappel_facture.closed)) fenetre_rappel_facture.close();
fenetre_rappel_facture=window.open('rappel-facture.php?numero='+selection,'','scrollbars=yes,resizable=yes,toolbar=no,width=840,height=820');	
}
	
function affiche_catalogue(numero_categorie,numero_famille,numero_sous_famille) {
	
		nombre=0;
		html="<table border='0' cellspacing='0' cellpadding='0'>";
		
		for (i=0;i<nombre_categorie;i++) {
			if (categorie[i][1] ==0)	{
				if (nombre) html+= "<tr><td valign='top' width='167' height='15' ><img src='images/ligne.jpg' width='186' height='10' border='0'></td></tr>";
				html+= "<tr><td valign='top' width='167' height='15' ><a class='menu_cat1' href='#' style='margin-left:15' onclick=\"affiche_catalogue("+categorie[i][0]+","+categorie[i][1]+","+categorie[i][2]+")\" >"+categorie[i][3]+"</a></td></tr>";				
				nombre++;
			}
			else {
				if (categorie[i][0]==numero_categorie) {
				
					if (categorie[i][2] ==0)	{
						html+= "<tr><td valign='middle' width='167' height='15' ><a style='margin-left:25;' class='menu_cat2' href='#' onclick=\"affiche_catalogue("+categorie[i][0]+","+categorie[i][1]+","+categorie[i][2]+")\" >"+categorie[i][3]+"</a></td></tr>";
						nombre++;
					}
					else {
						if (categorie[i][1]==numero_famille) {					
							html+= "<tr><td valign='middle' width='167' height='10' ><a style='margin-left:35;' class='menu_cat3' href='vente-produit-electrique-eclairage-chauffage-climatisation-plomberie-sanitaire-outillage.php?cat="+categorie[i][0]+"&fam="+categorie[i][1]+"&sfam="+categorie[i][2]+"' >"+categorie[i][3]+"</a></td></tr>";
							nombre++;
						}
					}
				}
			}
	

		}		
		
		html+="</table>";
		document.getElementById("catalogue").innerHTML =html;
	
}