// JavaScript Document
		// constantes d'affichage
		txt_debut = '<div class="visible"><table width="140" border="0" cellspacing="0" cellpadding="0" align="left">';
		txt_debut_ligne = '<tr><td width="10" background="http://www.netop.fr/images/fond_menu1.png">&nbsp;</td><td width="120" background="http://www.netop.fr/images/fond_menu1.png"><a href="';
		txt_fin_ligne = '</a></td><td width="10" background="http://www.netop.fr/images/fond_menu1.png"> </td></tr>';
		txt_fin='<tr><td>&nbsp;</td></tr></table></div>';

		var txt=new Array () ; 
		txt[1] = new Array();
		txt[1][0]='http://www.netop.fr/produit/netop_remote_control.htm">NetOp Remote Control';
		txt[1][1]='http://www.netop.fr/produit/netop_on_demand.htm">NetOp On Demand';
		txt[1][2]='http://www.netop.fr/produit/netop_mobile.htm">NetOp Mobile';
		
		
		txt[2] = new Array();
		txt[2][0]='http://www.netop.fr/produit/netop_school.htm">NetOp School';
		txt[2][1]='http://www.netop.fr/produit/netop_instruct.htm">NetOp Instruct';
		txt[2][2]='http://www.netop.fr/produit/ephorus.htm">ephorus';
		txt[2][3]='http://www.netop.fr/produit/kibschool.htm">Kibschool';
		txt[2][4]='http://www.netop.fr/produit/publication3d.htm">Publication3D';
		//txt[2][5]='#">Tactic';

		txt[3] = new Array();
		txt[3][0]='http://www.netop.fr/produit/netop_netfilter.htm">NetOp Netfilter';
		txt[3][1]='http://www.netop.fr/produit/netop_process_control.htm">NetOp Process Control';
		
		txt[4] = new Array();
		txt[4][0]='#">KEE Kit Electronique';
		
		txt[5] = new Array();
		txt[5][0]='http://www.netop.fr/telechargements/netoprc/index.htm">NetOp Remote Control';
		txt[5][1]='http://www.netop.fr/telechargements/netopondemandrc/index.htm">NetOp On Demand';
		txt[5][2]='http://www.netop.fr/telechargements/netopmobile/index.htm">NetOp Mobile';
		txt[5][3]='http://www.netop.fr/telechargements/netopsc/index.htm">NetOp School';
		txt[5][4]='http://www.netop.fr/telechargements/netopinstruct/index.htm">NetOp Instruct';
		txt[5][5]='http://www.netop.fr/telechargements/netopnetfilter/index.htm">NetOp Netfilter';
		txt[5][6]='http://www.netop.fr/telechargements/netopdf/index.htm">NetOp Process Control';
		txt[5][7]='http://www.netop.fr/telechargements/autres/index.htm">Autres versions';
		
		function menu(id) 
		{ 
			ref=document.getElementById(id); 
			if (ref.innerHTML== "menu_deroulant"){
				ligne = txt_debut ;
				for(var i=0; i<txt[id].length;i++){
					ligne = ligne + txt_debut_ligne + txt[id][i] + txt_fin_ligne ;
				}
				ligne = ligne + txt_fin; 
				ref.innerHTML = ligne; 				
			}
			else 
				ref.innerHTML= "menu_deroulant"; 
		} 
		
