function popupvolo(photo,largeur,hauteur,titre,descriptif) {
	hauteur=parseInt(hauteur) +180;
	largeur=parseInt(largeur) +50;
	if ((titre!='')&&(descriptif!='')){hauteur=parseInt(hauteur) +42;}
	var top=Math.round((screen.availHeight-hauteur)/2);
	var left=Math.round((screen.availWidth-largeur)/2);
	var contenu="<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'  'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html><head><title>"+titre+"</title><style type='text/css' media='screen'>@import 'styles/styles.css';</style></head><body class='popup' onclick='javascript:self.close()'><img src='"+photo+"' alt='"+titre+"'/><div><br /><b class='spip'>"+titre+"</b><br />"+descriptif+"</div></body></html>";
	var fenetre=open("","fenetre","scrollbars=yes,top="+top+",left="+left+",width="+largeur+",height="+hauteur+","); 
	fenetre.document.write(contenu);
	fenetre.resizeTo(largeur,hauteur); 
	fenetre.document.close();
	fenetre.focus();
}

