//copyright ADOK Gilles Vanderstraeten : gillesvds@adok.info
//utf-8
//---------------------------------------------------
function ouvrirFenetre(url,nom,largeur,hauteur,x,y){
  var opt="width="+largeur+",height="+hauteur+",screenX="+x+",screenY="+y+",left="+x+",top="+y+",dependent,scrollbars,resizable";
  var str=nom?"window.open(\""+url+"\",\""+nom+"\",\""+opt+"\")":nom+"=window.open(\""+url+"\",\""+nom+"\",\""+opt+"\")";
  eval(str);
}
//---------------------------------------------------

