function dim()
{
	self.resizeTo(1000,800);
}

function PopupImage(img,titre,largeur,hauteur)
{
	w=open("",'image','weigth=toolbar=no,scrollbars=no,resizable=yes, width='+largeur+', height='+hauteur+'');
	w.document.write("<html><head><title>"+titre+"</title></head>");
	w.document.write("<body onblur=\"window.close();\"><img src='"+img+"'>");
	w.document.write("</body></html>");
	w.document.close();
}
