// Demande de confirmation pour quitter l'interface
function ExitProg(message)
{
	var where_to = confirm(message);
	if (where_to==true)
	{
		window.close();
	}
}

