function OuvrirPopup(UrlPopup, NomPopup, largeur, hauteur){
//Ouvre une popup centrée grace à LARGEUR et HAUTEUR (barres de défilement actives)

	args = 'width=' + largeur + ', height=' + hauteur + ', left=' + (screen.width-largeur)/2 + ', top=' + (screen.height-hauteur)/2 + ', status=no, resizable=no, menubar=no, toolbar=no, scrollbars=yes';

	MaPopup = window.open(UrlPopup, NomPopup, args);
	MaPopup.focus();		//permet de mettre le focus sur la page si elle a déjà été ouverte. On évite de l'ouvrir plusieurs fois
}

function OuvrirPopup_NoScroll(UrlPopup, NomPopup, largeur, hauteur){
//Ouvre une popup centrée grace à LARGEUR et HAUTEUR (barres de défilement actives)

	args = 'width=' + largeur + ', height=' + hauteur + ', left=' + (screen.width-largeur)/2 + ', top=' + (screen.height-hauteur)/2 + ', status=no, resizable=no, menubar=no, toolbar=no, scrollbars=no';

	MaPopup = window.open(UrlPopup, NomPopup, args);
	MaPopup.focus();		//permet de mettre le focus sur la page si elle a déjà été ouverte. On évite de l'ouvrir plusieurs fois
}

function OuvrirNotice(UrlNotice, varPage, varGroupePage){
//Ouvre une notice et lance le calcul de stat
	//Ouverture de la popup
	
	PopupNotice = window.open('Produits_Notices_eStat.asp?varPage=' + varPage + '&varGroupePage=' + varGroupePage + '&UrlNotice=' + UrlNotice, '', 'width=800 left=' + (screen.width-800)/2 + ' height=600 top=' + (screen.height-600)/2 + 'status=yes resizable=yes menubar=yes toolbar=yes scrollbars=yes');

//	PopupNotice = window.open('', varPage);
	
	//Génération de statistiques eStat
//	spc("27407449284", varPage, varGroupePage);	
	
//	PopupNotice.location.href=UrlNotice;
	PopupNotice.focus();		
}