// JavaScript Document

/*
function nouvelleFenetre(url,titre) {
	 propriete = "top=0,left=0,resizable=yes, toolbar=no, scrollbars=no, menubar=no, location=no, statusbar=no";
	 propriete += ",width=" + (screen.width-8) + ",height=" + (screen.height-60);
	 win=window.open(url,titre,propriete)
	}
*/

function open_mentions(url,title){
	window.open(url,title, config='height=400, width=320, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no')
}
