<!-- Copyright 2001 Yvan VANWYNSBERGHE yvanwynsberghe@devparadise.com -->
<!-- d'autres sources sont disponible à http://www.devparadise.com/ -->
<!-- Utilisation libre si vous laissez le copyright, -->
<!-- la distribution de ce sources n'est possible qu'avec l'accord de l'auteur -->
<!--
<!--
function Ouvrir_Fenetre_losepw(fenetre) {
	fichier = 'lose_password.asp';

	if (document.all)
		var xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 640, yMax=480;
		var xOffset = (xMax - 450)/2, yOffset = (yMax - 150)/2;
	window.open(fichier,fenetre,'width=450,height=150,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=no,resizable=yes');
}

function Ouvrir_Fenetre_Login(fenetre, usr, pwd) {
	fichier = 'login_home.asp?Login=' + escape(usr) + '&Password=' + escape(pwd);

	if (document.all)
		var xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 640, yMax=480;
		var xOffset = (xMax - 450)/2, yOffset = (yMax - 150)/2;
	window.open(fichier,fenetre,'width=450,height=150,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=no,resizable=yes');
}

function Ouvrir_Fenetre_Nomen(fenetre, Prid, catid) {
	fichier = 'Save_Nome.asp?PR_ID=' + escape(Prid) + '&Categorie=' + escape(catid);

	if (document.all)
		var xMax = screen.width, yMax = screen.height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 640, yMax=480;
		var xOffset = (xMax - 450)/2, yOffset = (yMax - 150)/2;
	window.open(fichier,fenetre,'width=450,height=150,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=no,resizable=yes');
}



//-->