// JavaScript Document

function PopupImage(img) 
	{ 
	titre="Agrandissement"; 
	w=open("",'image','width=500,height=500,toolbar=no,scrollbars=yes,resizable=no'); 
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
	w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+90); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
	w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Mon image'>"); 
	w.document.write("</TD></TR></TABLE>");
	w.document.write("</BODY></HTML>"); 
	w.document.close(); 
	} 

function PopupVideo(img) 
	{ 
	titre="Agrandissement"; 
	w=open("",'image','width=500,height=500,toolbar=no,scrollbars=yes,resizable=no'); 
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
	w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+90); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
	w.document.write("<TD valign='middle' align='center'>" + '<object id="video1" style="float:left" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/ mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Chargement..." type="application/x-oleobject"><param name="FileName" value="' + img + '"><param name="AutoStart" value="false"><embed type="application/x-mplayer2" pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/" src="' + img + '" name="video1" AutoStart="false" ></embed ></object >'); 
	w.document.write("</TD></TR></TABLE>");
	w.document.write("</BODY></HTML>"); 
	w.document.close(); 
	} 
	
function redim(id,taille) 
	{
	if(taille=='')taille=240;
	if(document.getElementById(id).height>taille) document.getElementById(id).height=taille;
	}

	
function agrandir(objet)
	{
	objet.style.position='static';
	objet.width=parseInt(objet.width)*3 + 'px';
	objet.height=parseInt(objet.height)*3 + 'px';
	}
	
function rapticir(objet)
	{
	objet.style.position='relative';
	objet.width=parseInt(objet.width)/3 + 'px';
	objet.height=parseInt(objet.height)/3 + 'px';
	}

