function PicRemote(picNb,objetId,imgName) {
	wid =600;
	hei =400;
	
	/*ShowingImage = new Image();
    ShowingImage.src = "../imgpdt/"+imgName;
	wid = ShowingImage.width + 50;
    hei = ShowingImage.height + 60;
	
    wid = ShowingImage.width + 50;
    hei = ShowingImage.height + 60;
  if (wid < 51 || hei < 61) {
    wid=650;
    hei=490;
  }
  if (screen.availWidth < wid || screen.availHeight < hei) {
    wid = screen.availWidth - 50;
    hei = screen.availHeight - 50;
  }*/
  var popcenterLeft=(screen.availWidth-wid)/2;
  OpenWindow = window.open("popupImg.php?uid="+objetId+"&lang="+picNb+"", "remoteWin", "resizable=1, scrollbars=1, toolbar=0,location=0, left="+popcenterLeft+", top=10, width=" + wid + ", height=" + hei);
}
