function winopen(sizeX, sizeY)
{ var posX, posY, newWin;
  posX=screen.width/2 - sizeX/2;
  posY=screen.height/2 - sizeY/2 - 30;
  newWin=window.open("","popup","resizable=no,status=no,scrollbars=no,height="+sizeY+",width=" + sizeX + ",screenX=" + posX + ",screenY=" + posY + ",top=" + posY + ",left=" + posX);
  if (!newWin.opener) newWin.opener = self;
  return newWin;
}

function vH(photoID)
{ var win, wid, hei;

   if (screen.width == 800) 
   { wid = 706;
     hei = 530; }
   else
   { wid = 800;
     hei = 600; }
   win=winopen(wid, hei);
   win.document.write('<html><head><title>'+photoID+'</title></head><body bgcolor="black" leftmargin="0"');
   win.document.write(' topmargin="0" marginwidth="0" marginheight="0"><center>');
   win.document.write('<a href="javascript:close();"><img src="/images/gallery/'+photoID+'" border="0" alt="Cliquer pour fermer la photo"></a>');
   win.document.write('</center></body></html>');
}

function vV(photoID)
{ var win, wid, hei;

   if (screen.width == 800) 
   { wid = 397;
     hei = 530; }
   else
   { wid = 450;
     hei = 600; }
   win=winopen(wid, hei);
   win.document.write('<html><head><title>'+photoID+'</title></head><body bgcolor="black" leftmargin="0"');
   win.document.write(' topmargin="0" marginwidth="0" marginheight="0"><center>');
   win.document.write('<a href="javascript:close();"><img src="/images/gallery/'+photoID+'" border="0" alt="Cliquer pour fermer la photo"></a>');
   win.document.write('</center></body></html>');
}

