// JavaScript Document
function target_blank(chemin)
{
window.open(chemin, "MGEL", "menubar=yes, toolbar=yes, location=yes, directories=yes, status=yes, scrollbars=yes, resizable=yes, copyhistory=yes"); 
}

function popup(chemin,titre,option)
{
window.open(chemin, titre, option); 
}

function twCompteur_Texte(nTexte, nCompteur, nLimite)
{
if (nTexte.value.length > nLimite)
	nTexte.value = nTexte.value.substring(0, nLimite);

else 
	nCompteur.value = nLimite - nTexte.value.length;
	}
	

