<!--
var BIB = "/consultation2/";

function ouvreFenPanier() {
	if (parent.document.cookie) {
		var Wmax = screen.width;
		var Hmax = screen.height;

		var iW = 700;
		var iH = 500;
	
		var optFen = "dependant=yes,status=yes,scrollbars=yes,resizable=no,height="+iH+",width="+iW+",top=100,left=200";
		//var loc = "/cgi-bin/panier.pl?" + parent.document.cookie;
		var loc = BIB + "panierNotices.html";
		var panier = open(loc, "panier", optFen);
	}
	else {
		alert("Il n'y a aucune notice !");
	}
}

function Quitter() {
	if (parent.document.cookie) {
		var rep = false;
		rep = confirm("Vous avez sélectionné un ensemble de notices.\nVoulez-vous vider le panier de notices ?");
		if (rep) {
			//alert("on efface");
			var exp = new Date();
			exp.setTime(exp.getTime()-1);

			chaine = "liste_notices=; expires="+ exp.toGMTString();
			parent.document.cookie = chaine;
		}
	}
}

function ouvreAide() {
	var Wmax = screen.width;
	var Hmax = screen.height;

	var iW = 500;
	var iH = 500;
	

	var optFen = "dependant=yes,scrollbars=yes,resizable=no,height="+iH+",width="+iW;
	var aide = open("aide/index.html", "aide", optFen);
 }

//-->
