function nouvelle_fenetre(laquelle)
{
if (top.winon==0)
	{
		top.fenetre = open(laquelle,"g","width=600,height=450,top=10,left=10,resizable=no,scrollbars=yes,status=no,toolbar=no,directories=no,menubar=no,location=no");
		top.winon = 1;
	}
else 
	{
	if (top.fenetre.closed)
		{
			top.fenetre = open(laquelle,"g","width=600,height=450,top=10,left=10,resizable=no,scrollbars=yes,status=no,toolbar=no,directories=no,menubar=no,location=no");
		}
	else 
		{
			top.fenetre.location.href = laquelle;
		}
	top.fenetre.focus();
	}
}

function imprime(laquelle) 
{
	zfenetre = open(laquelle,"","width=750,height=550,top=10,left=10,resizable=yesy,scrollbars=yes,status=no,toolbar=yes,directories=no,menubar=no,location=no");
	zfenetre.focus();
}

function imprimelapage(texte) 
{
  if (window.print) 
  { 
    agree = confirm('Impression de \n' + texte + '. \n\n Prêt à imprimer?');
    if (agree) window.print();
    //window.close();
  }
  else
  {
    alert('Pour imprimer ' + texte + ', \ncliquez sur le bouton IMPRIMER\n de votre navigateur. \n\nA defaut d\'imprimante, \nrelevez le numéro de ' + texte + ' \net joignez-le à votre règlement.');
  }
}

function affiche(laquelle) 
{
	zfenetre = open(laquelle,"","width=565,height=510,top=10,left=10,resizable=yesy,scrollbars=yes,status=no,toolbar=yes,directories=no,menubar=no,location=no");
	zfenetre.focus();
}

