truc=false;
debut='<html><body><table border="0" width="100%" height="100%"><tr><td align="center" width="100%" height="100%"><img src="';
fin='" alt=""></td</tr></table></body></html>';
function alertImage(text,width,height) {
  if(truc!=false && !truc.closed){
      truc.close();
      truc=false;
  }
  if(!width)
    width=500;
  if(!height)
    height=500;
  truc=window.open('','alertWin','width='+width+',height='+height+',resizable=1');
  truc.document.open();
  truc.document.write(debut+text+fin);
  truc.document.close();
}
