// Fonction d'ouverture d'une popup
function OuvrirPop(theURL,features){
    splits = theURL.split(".");
    window.open(theURL,splits[0],features);
}

