/* 
*  PopWindow
*  ouvre une nouvelle fenêtre d'explorateur minimale et lui donne le focus
*  externe : PopWindow(urlPage, heightPage, widthPage)
*/

function PopWindow(urlPage, widthPage, heightPage)
  {
    PW = null;
    PW = window.open(urlPage, "pop", "toolbar=0,menubar=0,top=0,left=0,scrollbars=0,resizable=no,width="+widthPage+",height="+heightPage);
    Pw.focus();
  }