/* auteur: Philippe Gamache */
/* Date de création: 2001-05-20 */
function openWindow(url, width, height, scroll, tool, menu) 
{
 // 1 : 400x400 2: 400x450, 3: 2 w/ SB, 4: 400x535 5: 4 w/tool, scrool, menu
  var strTmp
  strTmp = 'width=' + width + ',height=' + height + ',resizable'
  if (scroll) 
    strTmp += ",scrollbars=yes";
  if (tool) 
    strTmp += ",toolbars=yes";
  if (menu) 
    strTmp += ",menubar=yes";
  url += "&mode=popup"
  popupWin = window.open(url, 'new_page', strTmp);
}

