/*Fonction de Pop Up*/
function popUp(adresse,w_name,w_width,w_height,showLocation,showToolbar,showStatus,showMenuBar,showDirectories,showCopyHistory,showScrollBars,showResizable){ window.open(adresse,(showLocation==null?'window_name':w_name),"location="+(showLocation==true?'yes':'no')+",toolbar="+(showToolbar==true?'yes':'no')+",status="+(showStatus==true?'yes':'no')+",menubar="+(showMenuBar==true?'yes':'no')+",directories="+(showDirectories==true?'yes':'no')+",copyhistory="+(showCopyHistory==true?'yes':'no')+",scrollbars="+(showScrollBars==true?'yes':'no')+",resizable="+(showResizable==true?'yes':'no')+",width="+w_width+",height="+w_height+"");
}

function popUpCentered(adresse,w_name,w_width,w_height,showLocation,showToolbar,showStatus,showMenuBar,showDirectories,showCopyHistory,showScrollBars,showResizable){ 
tmp = window.open(adresse,(showLocation==null?'window_name':w_name),"location="+(showLocation==true?'yes':'no')+",toolbar="+(showToolbar==true?'yes':'no')+",status="+(showStatus==true?'yes':'no')+",menubar="+(showMenuBar==true?'yes':'no')+",directories="+(showDirectories==true?'yes':'no')+",copyhistory="+(showCopyHistory==true?'yes':'no')+",scrollbars="+(showScrollBars==true?'yes':'no')+",resizable="+(showResizable==true?'yes':'no')+",width="+w_width+",height="+w_height+"");
var tPosX = (screen.width - parseInt(w_width)) / 2;
var tPosY = (screen.height - parseInt(w_height)) / 2 - 30;
tmp.moveTo(tPosX,tPosY);
}