// JavaScript Document

function OpenCenterPopUp(mon_fichierhtml, width, height, nompopup){	
	var left=window.screen.width/2-175;
	var top=window.screen.height/2-175;
	//Videment faut modifier la config!!
	//var configuration="width='"+width+"', height='"+height+"', left='" + left+"', top='" + top+"'";
	/*toolbar='no', menubar='no', location='no', directories='no', status='no', resizeable='no', scrollbars='yes', */
	window.open(mon_fichierhtml,nompopup,"width="+width+",height="+height+",left="+left+",top="+top+", scrollbars=yes");

	//window.open(mon_fichierhtml,nompopup, ""+configuration+"");
	alert(mon_fichierhtml+"//"+nompopup+"//"+"width="+width+",height="+height+",left="+left+",top="+top+"");
}



function popup(url, titre, largeur, hauteur, scroll) 

  {
  window.open(url, titre, 'width=' + largeur + ', height=' + hauteur + ', scrollbars=' + scroll +',resizeable=no');

  }
