// open page texte
var Next='';
var browser = navigator.appName;
var openPopup = 0;

var adresse;
function texte(adresse)
{		 
if (browser.indexOf("Microsoft") !=-1)
      {		 
		  popup = window.open('', 'texte', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=380,height=500');
        popup.location.href = adresse;
        popup.focus();
        openPopup = 1;
        }

if (browser.indexOf("Netscape") !=-1)
      {		 

        popup = window.open('', 'texte', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=380,height=500');
        popup.location.href = adresse;
        popup.focus();
        openPopup = 1;
        }
        
else
	  {		 

        popup = window.open('', 'texte', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=380,height=500');
        popup.location.href = adresse;
        popup.focus();
        openPopup = 1;
        }



}
function NullPopup()
{
        if(openPopup >=1)
        {
                popup.close();
        }
}