function Media(id, media)
{
	if (document.getElementById) {
document.getElementById(id).innerHTML = media;
	}
}
function ouvrirFenetre(url) 
{
	w=screen.width;
	h=screen.height;
	l=0;
	t=0;

maFenetre = window.open(url,'','toolbar=no,location=no,status=no,menubar=no,fullscreen=yes,scrollbars=no,resizable=no,sreenX='+l+',screenY='+t+',left='+l+',top='+t+',width='+w+',height='+h);

}
function agrandir() {
  false;
}



function affichemaxi(chemin)
	{
	Imageslim = new Image;
	Imageslim.src = chemin;
	titre='T.H. COM';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,height=10,width=10,left=10, top=10');
	html = '<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 bgcolor="#FFFFFF"><table width="100%" height="100%" cellspacing=0 cellpadding=0><tr><td align="center" valign="middle">';
	html =html+'<table border=0 cellspacing=0 cellpadding=0 align=center><tr><td background="../../images/bg_pop.gif"><img src="../../images/pix.gif" height="6"></td></tr><tr><td class="picture_gr" bgcolor="#FFFFFF"><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+60,document.imageTest.height+100);window.moveTo(100,100);"></td></tr>';
	html=html+'<tr><td><table width="100%" cellspacing=0 cellpadding=0><tr><td bgcolor="#FFFFFF"><img src="../../images/pix.gif" height="3"></td></tr><tr><td bgcolor="#FFFFFF"><img src="../../images/pix.gif" height="1"></td></tr><tr><td align="right" bgcolor="#E9E9E9" height="20"><a href="#" onClick="javascript:window.close()"><img src="../../images/fermer.gif" hspace="4" border="0"></a></td></tr></table></td></tr>';
	html=html+'</table></td></tr></table>';
	html=html+'</BODY></HTML>';
	
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	}
