function openWin(URL,width,height){
    aWindow=window.open(URL,"_blank","width="+width+",height="+height+",location=0,scrollbars=0,resizable=0,menubar=0,toolbar=0,status=1");
}
function openImage(image,width,height){
    aWindow=window.open("/jsp/commons/pages/openImage.jsp?image=" + image,"_blank","width="+width+",height="+height+",location=0,scrollbars=0,resizable=0,menubar=0,toolbar=0,status=1");
}
function openAlert(texte){
    alert(texte);
}