

function creeFenetre(image, titre, largeur, hauteur){
  if(!largeur){largeur=1024;}
  if(!hauteur){hauteur=768;}
  t = "<html><head><title>"+titre+"</title></head>";
	t+="<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>";
	t+="<img src='"+image+"'></body>";
	newWindow = open("","_blank","width="+largeur+",height="+hauteur+"");
	newWindow.document.open();
	newWindow.document.write(t);
	newWindow.document.close();
	newWindow.title=titre;
}
 
