function picsview(name,width,height)

		{

			browserVer = parseInt(navigator.appVersion);

		       if (browserVer >= 3) {

		                version = "n3";

		        } else {

		                version = "n2";

		        }



			if (version != "n2")



			{
var width2= parseInt(width)+4;
var height2= parseInt(height)+4;

				var newWinOpts=',width=' + width2 +',height=' + height2 + ',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>Galerie Photos</title></head><body BGCOLOR=\"white\" LEFTMARGIN=\"0\" TOPMARGIN=\"0\" MARGINWIDTH=\"0\" MARGINHEIGHT=\"0\"><table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" valign=\"middle\"><tr><td>");

				thenewWin.document.write("<a href=\"javascript:self.close()\"><IMG  src=\"" +name+ "\" width=\"" + width +"\" height=\""+ height  +"\" border=0 alt=\"Cliquez pour refermer cette fenêtre\"></a>");

				thenewWin.document.write("</td></tr></table></body></html>");

				thenewWin.document.close();

				thenewWin.focus();

			}

			else

			{

			alert("navigateur non compatible")

			}

		}
