function afficheVignette(pathVig,titVig,pathImg,titImg)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+pathImg+'\',\''+titImg+'\');" onMouseOver="javascript:window.status = \''+titVig
+'\';return true" onmousedown="javascript:window.status = \''+titVig
+'\';return true" onMouseout="javascript:window.status = \'\'">');
	document.write('<IMG SRC="'+pathVig+'"');
	document.write(' HSPACE=0 VSPACE=0 class="image" ALT="'+titVig+'"></A>');
	}
function afficheVigSon(pathVig,titVig,pathImg,titImg,son)
	{
	document.write('<A HREF="javascript:afficheMaxSon(\''+pathImg+'\',\''+titImg+'\',\''+son+'\');" onMouseOver="javascript:window.status = \''+titVig
+'\';return true" onmousedown="javascript:window.status = \''+titVig
+'\';return true" onMouseout="javascript:window.status = \'\'">');
	document.write('<IMG SRC="'+pathVig+'"');
	document.write(' HSPACE=0 VSPACE=0 class="image" ALT="'+titVig+'"></A>');
	}
function afficheMaxi(chemin,titre)
	{
	i1 = new Image;
	i1.src = chemin;
	popupImage = window.open('','photo','width=200,height=200,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write('<HTML><HEAD><TITLE>'+titre+'</TITLE>\n');
	popupImage.document.write('<link rel="stylesheet" href="../styles/test.css" type="text/css">\n');
	popupImage.document.write('</HEAD>\n');
	popupImage.document.write('<body bgcolor="#000000" leftmargin="0" marginwidth="0"><CENTER>\n');
	popupImage.document.write('<IMG SRC="'+chemin+'" NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+50,document.imageTest.height+100);window.focus()" class="image"><BR>\n');
	popupImage.document.write('<p><a href="javascript:window.close();"><font size="-2">Fermer</font></a></p>\n');
	popupImage.document.write('</CENTER></BODY></HTML>');
	popupImage.document.close()
	};
function afficheMaxSon(chemin,titre,son)
{
	i1 = new Image;
	i1.src = chemin;
	popupImage = window.open(son,son,'width=200,height=200,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write('<HTML><HEAD><TITLE>'+titre+'</TITLE>\n');
	popupImage.document.write('<link rel="stylesheet" href="../styles/test.css" type="text/css">\n');
	popupImage.document.write('</HEAD>\n');

	popupImage.document.write('<body bgcolor="#000000" leftmargin="0" marginwidth="0"><CENTER>\n');
//	popupImage.document.write('<IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+50,document.imageTest.height+200);window.focus()"><BR>\n');
	popupImage.document.write('<IMG SRC="'+chemin+'" NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+50,document.imageTest.height+180);" class="image"><BR>\n');
  popupImage.document.write('<p><a href="../mp3/'+son+'.wma" target="_blank">Ecouter</a> avec <img src="../gifs/media.gif" align="absmiddle"></p>\n');
  popupImage.document.write('<p><a href="../real/'+son+'.ra" target="_blank">Ecouter</a> avec <img src="../gifs/player.gif" align="absmiddle"></p>\n');
	popupImage.document.write('<p><a href="javascript:window.close();"><font size="-2">Fermer</font></a></p>\n');

	popupImage.document.write('</CENTER></BODY></HTML>\n');
	popupImage.document.close()
};
	


