// JavaScript Document

function ouvrir(lien, nom) {
	if(document.layers)  // test Netscape 4
		{window.open(lien, nom, "left=150, top=150, height=500, width=780, resizable=1");}
	else
		{window.open(lien, nom, "left=150, top=150, height=700, width=700, resizable=1, location=0, menubar=0, scrollbars=1, status=0, toolbar=0");}
}
