
		warning = "n" ;

		aCookie = document.cookie.split("; ") ;

		for (i=0; i<aCookie.length; i++)
		{
			aCrumb = aCookie[i].split("=") ;
			if ("warning_charme" == aCrumb[0])
				warning = unescape(aCrumb[1]) ;
		}

		if (warning == "n")
		{
			x = screen.availWidth  -  3 ;
			y = screen.availHeight - 20 ; 
			win = window.open('/pub/Sexe/warning.html', '','height=' + y + ', width='+ x + ', toolbar=no, menubar=no, scrollbars=yes');
			document.cookie = "warning_charme=\"o\"; ";
		}


