function LoadTab(nbpers)
{
  var value = nbpers;
  var chaine = '<table border="0" width="100%" align="center"><tr><td align="center"> Noms </td><td  align="center">Prénoms</td><td align="center">Date de naissance</td></tr>';
  for (i=1; i<=nbpers; i++) 
  {
    chaine = chaine + '<tr><td><input type="text" name="nom'+i+'"></td><td><input type="text" name="nom'+i+'"></td><td><input type="text" name="nom'+i+'"></td></tr>';
  }
  chaine = chaine + '</table>';
  
  document.getElementById('iris').innerHTML = chaine;
}
  
function PopupImage(img) {
	titre="Vic's Land";
	w=open("",'image','width=400,height=300,toolbar=no,scrollbars=no,resizable=no');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+10,document.images[0].height+30); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}
