/////////////////////////////////////////////////
//Ouvre une page en full
/////////////////////////////////////////////////
function FullSc(url, name)
{
var windowName = (name == "") ? name : "";
if (navigator.appName == 'Microsoft Internet Explorer' && (navigator.platform.substring(0,3) == 'Win'))
  {
  Wc=10;
  Hc=57;
  }
  else if (navigator.appName == 'Netscape' && navigator.platform.substring(0,3) == 'Win')
  {
  Wc=12;
  Hc=59;
  }
  else if (navigator.platform == 'MacPPC' && navigator.appName == 'Netscape')
  {
  Wc=13;
  Hc=49;
  }
  else
  {
  Wc=13;
  Hc=31;
  }
Wwidth=screen.width-Wc;
Wheight=screen.height-Hc;
finalFeature="left=0,top=0,width=" + Wwidth + ",height=" + Wheight + ",scrollbars=no";
finalUrl=url+"?width=" + Wwidth + "&height=" + Wheight;
full=window.open(finalUrl,windowName,finalFeature);
full.focus();
if (navigator.platform.indexOf("MacPPC")!=-1 && navigator.appName.indexOf('Microsoft')!=-1)
  {full.resizeTo(Wwidth,Wheight);}
}

function FullScVideo(url, name)
{
FullSc(url, name)
}
