// JavaScript Document

//POPUP
function popup(page,nom,option) {
    var w=window.open(page,nom,option);
	w.document.close();
    w.focus();
}