// Fin de la fonction OuvrirPage
function OuvrirPage(PageDlg)
{
	var Win;
	
	gauche = screen.width;
	haut = screen.height;
	if(gauche >= 800)
		gauche = (gauche-800)/2;
	else
		gauche=0;
		
	if(haut >= 600)
		haut = (haut-540)/4;
	else
		haut=0;
		
		
	Win=window.open(PageDlg,"Page","Width=640,Height=480,toolbar=yes,directories=no,menubar=yes,status=yes,resizable=yes,scrollbars=yes,left="+gauche+",top="+haut);

    if (Win.opener == null) 
        Win.opener = window;
	
    Win.focus();
    return
 }
// Fin de la fonction OuvrirPage


// Fin de la fonction OuvrirPetit
function OuvrirPetit(PageDlg)
{
	var Win;
	
	gauche = screen.width;
	haut = screen.height;
	if(gauche >= 800)
		gauche = (gauche-800)/2;
	else
		gauche=0;
		
	if(haut >= 600)
		haut = (haut-540)/4;
	else
		haut=0;
		
		
	Win=window.open(PageDlg,"PagePetite","Width=440,Height=220,toolbar=no,directories=no,menubar=no,status=no,resizable=no,scrollbars=no,left="+gauche+",top="+haut);

    if (Win.opener == null) 
        Win.opener = window;
	
    Win.focus();
    return
 }
 
function OuvrirQuestionnaire(PageDlg)
{
	var Win;
	
	gauche = screen.width;
	haut = screen.height;
	if(gauche >= 800)	gauche = (gauche-800)/2;
	else gauche=0;
		
	if(haut >= 600)	haut = 40;
	else haut=0;
	
	Win=window.open(PageDlg,"Questionnaire","Width=801,Height=540,location=no,adressbar=no,toolbar=no,directories=no,menubar=no,status=no,resizable=yes,scrollbars=yes,left="+gauche+",top="+haut);

    if (Win.opener == null) 
        Win.opener = window;
	
    Win.focus();
    return;
 }
// Fin de la fonction OuvrirPetit
