/*
<script language="JavaScript" type="text/javascript">QT_WriteOBJECT_XHTML('../videos/'+fichier_video+'','480','300','','controller','true','bgcolor','#000000','target','myself','type','video/quicktime');</script>
*/

var image_close = '<img src="../images/icones/croix.png" border="0" width="16" height="16" alt="close" title="close" />';

function aa_opacity(transp)
{
   // fin prématurée
   return;

   // debut de la fonction :
   var transp;
   if(document.getElementById)
   {
      if (transp == "restore")
      {
         document.getElementById("fond").style.opacity = 1;
      }
      else
      {
         document.getElementById("fond").style.opacity = 0.5;
      }
   }
   return;
}

function restoreFull()
{
   if(document.getElementById)
   {
      aa_opacity("restore");
      document.getElementById("dyn_full").innerHTML = divFull;
      document.getElementById("PageTest").style.height = '329px';
      document.getElementById("PageTest").style.background = div_color;
      aa_fenetreMain();
   }
   return;
}

function restoreVid()
{
   if(document.getElementById)
   {
      aa_opacity("restore");
      document.getElementById("popup").innerHTML = '';
      document.getElementById("dyn_vid").innerHTML = divVid;
      aa_fenetreMain();
   }
   return;
}

function changeVideoFull(fichier_video,rapport)
{
   if(document.getElementById)
   {
      restoreVid();
      aa_opacity("change");
      div_color = document.getElementById("PageTest").style.background;

      var bg_color = "101010";
      var bg_color = "000000";
      var hauteur;
      if (rapport == '16/9')
      {
         hauteur = 378;
         div_hauteur = parseInt(hauteur);
         div_hauteur = div_hauteur+32;
         document.getElementById("PageTest").style.height = ''+div_hauteur+'px';
      }
      else hauteur = 295;

      document.getElementById("PageTest").style.background = '#000';
      document.getElementById("dyn_full").innerHTML = '<div class="commentsStatus">'
		                                    + '<table border="0" cellpadding="0" cellspacing="0">'
		                                    + '   <tr><td colspan="2" style="text-align: right;"><a href="javascript:;" onClick="restoreFull();">'+image_close+'</a></td></tr>'
		                                    + '   <tr>'
                                                    + '      <td colspan="2">'
		                                    + '         <object width="770" height="'+hauteur+'">' // 378 // 299
                                                    + '         <EMBED width="770" height="'+hauteur+'" SRC="../videos/'+fichier_video+'" kioskmode="false" cache="true" AUTOPLAY="true" CONTROLLER="false" type="video/quicktime" BGCOLOR="#'+bg_color+'" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/">'
                                                    + '         </EMBED>'
                                                    + '         </object>'
		                                    + '      </td>'
                                                    + '   </tr>'
		                                    + '   <tr>'
                                                    + '      <td>'+divComm+'</td>'
                                                    + '      <td><img src="../images/space.gif" width="1" height="16" alt="" title="" /></td>'
                                                    + '   </tr>'
		                                    + '</table>'
		                                    + '</div>';
      aa_fenetreMain();
   }
   else
   {
      window.open('../videos/'+fichier_video,"","_blank");
   }
   return;
}

function changeVideo480(fichier_video)
{
   if(document.getElementById)
   {
      restoreVid();
      aa_opacity("change");
      document.getElementById("dyn_vid").innerHTML = ''
//                                                          + '<div id="1_fen" style="position: absolute; z-index: 10000; top: 221px; left: 381px;" onMouseDown="aa_click(this.id)">'
//                                                          + '<div id="1_zone" onMouseDown="aa_drag(this.id,event);" style="cursor: move;">deplace</div>'
                                                          + '<div class="noirDroite">'
	                                                  + '<table border="0" cellpadding="0" cellspacing="0">'
	                                                  + '   <tr>'
                                                          + '      <td rowspan="3"><img src="../images/space.gif" width="7" height="1" alt="" title="" /></td>'
                                                          + '      <td><img src="../images/space.gif" width="1" height="6" alt="" title="" /></td>'
                                                          + '   </tr>'
		                                          + '   <tr><td style="text-align: right;"><a href="javascript:;" onClick="restoreVid();">'+image_close+'</a></td></tr>'
		                                          + '   <tr>'
                                                          + '      <td>'
		                                          + '         <object width="480" height="300">'
                                                          + '         <EMBED width="480" height="300" SRC="../videos/'+fichier_video+'" kioskmode="false" cache="true" AUTOPLAY="true" CONTROLLER="true" type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/">'
                                                          + '         </EMBED>'
                                                          + '         </object>'
		                                          + '      </td>'
                                                          + '   </tr>'
		                                          + '</table>'
		                                          + '</div>';
      aa_fenetreMain();
//		                                          + '</div>';
   }
   else
   {
      window.open('../videos/'+fichier_video,"","_blank");
   }
   return;
}

function changeVideo320(fichier_video)
{
   if(document.getElementById)
   {
      restoreVid();
      aa_opacity("change");
      document.getElementById("dyn_vid").innerHTML = '<div class="noirDroite">'
	                                                   + '<table border="0" cellpadding="0" cellspacing="0">'
	                                                   + '   <tr>'
                                                           + '      <td rowspan="3"><img src="../images/space.gif" width="87" height="1" alt="" title="" /></td>'
                                                           + '      <td><img src="../images/space.gif" width="1" height="50" alt="" title="" /></td>'
                                                           + '   </tr>'
		                                           + '   <tr><td style="text-align: right;"><a href="javascript:;" onClick="restoreVid();">'+image_close+'</a></td></tr>'
		                                           + '   <tr>'
                                                           + '      <td>'
		                                           + '         <object width="320" height="206">'
                                                           + '         <EMBED width="320" height="206" SRC="../videos/'+fichier_video+'" kioskmode="false" cache="true" AUTOPLAY="true" CONTROLLER="true" type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/">'
                                                           + '         </EMBED>'
                                                           + '         </object>'
		                                           + '      </td>'
                                                           + '   </tr>'
		                                           + '</table>'
		                                           + '</div>';
      aa_fenetreMain();
   }
   else
   {
      window.open('../videos/'+fichier_video,"","_blank");
   }
   return;
}

