var myimages=new Array()

function preloadimages(){
    for (i=0;i<preloadimages.arguments.length;i++){
        myimages[i]=new Image();
        myimages[i].src=preloadimages.arguments[i];
  }
}

function OpenNewWindowForPicture (title,picture,width,height){
  pscroll="no";
  if(height>screen.availHeight)
  {
    height=screen.availHeight-5;
    pscroll="yes";
  }
  if(width>screen.availWidth)
  {
    width=screen.availWidth-5;
    pscroll="yes";
  }
  myWindow=window.open("","Galerie_Photo", "width="+width+",height="+height+",location=no,menubar=no,status=0,toolbar=no,scrollbars="+pscroll+",resizable=yes");

  myWindow.focus();
  myWindow.resizeTo(width+10, height+30);

  myWindow.document.writeln("<html><head><title>"+title+"</title></head><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
  myWindow.document.writeln("<img src='"+picture+"' width='"+width+"' height='"+height+"' alt='Cliquez pour fermer' onClick='window.close();'  style='cursor:hand;'></body></html>");
  myWindow.document.close();
}
function OpenProgramDetails(pagelink)
{
//   alert("6");
  myActorWindow=window.open(pagelink, 'Program', "width=800,height=500,location='?',menubar=no,status=0,toolbar=no,scrollbars=yes,resizable=yes");
  myActorWindow.focus();
}