function popup(chemin,hauteur,largeur) {
/*
alert (chemin);
alert (hauteur);
alert (largeur);
*/
	if (hauteur == "")
		{
			hauteur = 300
		}
	if (largeur == "")
		{
			largeur = 400
		}
window.open(chemin,'POPUP','width='+largeur+',height='+hauteur+',scrollbars=1')

}