
function NewWindow(nom_page, nom_fenetre, larg, haut, scroll, resize, image, border, texte)
	{

	if (document.all && event.button != 1)
	{
	alert("Les images de ce site s'ouvrent\nautomatiquement dans un pop-pop");
	return false;
	}
	
	else
	{
   var requete="image='"+image+"';larg="+larg+";haut="+haut+";border="+border+";texte='"+texte+"';" ;
   var requete="image='"+image+"';larg="+larg+";haut="+haut+";border="+border+";" ;
   var win_h = (screen.width - larg) / 2;
   var win_v = (screen.height - haut) / 2;
   winprops = 'height='+haut+',width='+larg+',top='+win_v+',left='+win_h+',scrollbars='+scroll+',resizable='+resize
   window.open(nom_page+requete, nom_fenetre, winprops);
	}

	}

function openWin2(url,param)
   {
   window.open(url,"Win2",param + "status=no,location=no,menubar=no,resizable=no,toolbar=no,scrolling=auto");
   }

function openWin3(url,nom, param)
   {
   window.open(url, nom, param + "status=no,location=no,menubar=no,resizable=no,toolbar=no,scrolling=auto");
   }

function openWin(url,param)
   {
   window.open(url,"eb",param + "status=yes,location=yes,menubar=yes,resizable=yes,toolbar=yes,scrolling=auto");
   }
