function picsview(name,width,height)
		{ 
			browserVer = parseInt(navigator.appVersion);
		       if (browserVer >= 3) {
		                version = "n3";
		        } else {
		                version = "n2";
		        }
		
			if (version != "n2")
		
			{	
				var newWinOpts=',width=' + width +',height=' + height + ',scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no';
						
			   	thenewWin = window.open("",'thenewWin',newWinOpts);
				thenewWin.document.open("text/html");
				thenewWin.document.write("<html><head><title>Photo du produit</title></head><body BGCOLOR=\"white\" LEFTMARGIN=\"0\" TOPMARGIN=\"0\" MARGINWIDTH=\"0\" MARGINHEIGHT=\"0\">"); 
				thenewWin.document.write("<a href=\"javascript:self.close()\"><IMG  src=\"" +name+ "\" width=\"" + width +"\" height=\""+ height  +"\" border=0 alt=\"Cliquez pour fermer cette fen&ecirc;tre\"></a>");
				thenewWin.document.write("</body></html>"); 
				thenewWin.document.close();
				thenewWin.focus();
			}
			else 
			{
			alert("navigateur non compatible")
			}
		}