
function PopupImageH(img) { 
titre="ZOOM"; 
w=open("",'image','width=600,height=400,toolbar=no,scrollbars=no,resizable=no'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<BODY  bgcolor='#000000' 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=''>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close(); 
} 

function PopupImageV(img) { 
titre="ZOOM"; 
w=open("",'image','width=400,height=600,toolbar=no,scrollbars=no,resizable=no'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<BODY  bgcolor='#000000' 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=''>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close(); 
} 

function lancevideo(file) {
document.getElementById('video').style.visibility="visible";
document.getElementById('video').innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="583" height="382"><param name="movie" value="'+file+'"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="TRANSPARENT" width="583" height="382"></embed></object>';
}

function fermevideo(file) {
document.getElementById('video').style.visibility="hidden";
}

function lance_iti(file) {
document.getElementById('iti').style.visibility="visible";
document.getElementById('iti').innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="583" height="382"><param name="movie" value="'+file+'"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="TRANSPARENT" width="583" height="382"></embed></object>';
}

function ferme_iti(file) {
document.getElementById('iti').style.visibility="hidden";
}

