// JavaScript Document

function fenetre(url)
{
	window.open(url, "", "width=450, height=500");
}

function fermer()
{
	window.close();
}