function ImageMax(chemin)
   {
   i1 = new Image;
   i1.src = chemin;
   html = '<html><head><title>Produit - Drivers, sp&eacute;cialiste Jaguar  </title></head><body scroll="no" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" onBlur="top.close()"><IMG src="'+chemin+'" BORDER=0 NAME=ImageMax onLoad="window.resizeTo(document.ImageMax.width+5,document.ImageMax.height+30)"></body></html>';
   popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close()
   };
   
function expand(n)
{
	var node = n;
	while ( node.nodeName != "UL" )
		node = node.nextSibling;
	if ( node.style.display == 'block' ) {
		node.style.display = 'none';
		n.src = 'js/plus.gif';
	} 
	else {
		node.style.display = 'block';
		n.src = 'js/minus.gif';
	}
};
