// JavaScript Document
function apercu(image,largeur,hauteur) 
{
	largeur		=	largeur+20; 
	hauteur		=	hauteur+20;
	var top		=	(screen.height-hauteur)/2;
	var left	=	(screen.width-largeur)/2;
	html 		= 	'<html><head><title>Capture d\'écran</title></head><body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0><center><a href="#" onClick="window.close()"><img border="0" alt="Cliquer pour refermer cette fenętre" title="Cliquer pour refermer cette fenętre" src="'+image+'" name=""></a></center></body></html>';
	popupImage = window.open('','_blank','top='+top+',left='+left+',width='+largeur+',height='+hauteur+',toolbar=0,location=0,directories=0,menuBar=0,resizable,scrollbars');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}

function telecharger(id,nom) {
	var top		= (screen.height-400)/2;
	var left	= (screen.width-300)/2;
	window.open('http://www.01mg.net/telecharger.php?nom=' + nom + '&id=' + id,"","top="+top+",left="+left+",width=300,height=400");
}