
if (document.getElementById && document.createTextNode) {
  
  var win_options = "on"; 
  
  var win_width = 400; // width
  var win_height = 300; // height
  var win_dirs = "no"; // directories
  var win_loc = "no"; // location bar
  var win_menu = "no"; // menubar
  var win_resz = "yes"; // resizable
  var win_scroll = "yes"; // scrollbars
  var win_stat = "yes"; // status bar
  var win_tool = "no"; // toolbar
  
  
  var the_link = document.getElementById("reglement");
  var lnk_op = the_link.href;

  var win_atts = 'width='+win_width+',height='+win_height+',directories='+win_dirs+',location='+win_loc+',menubar='+win_menu+',resizable='+win_resz+',scrollbars='+win_scroll+',status='+win_stat+',toolbar='+win_tool;

  if (win_options != "on") {
    win_atts = '';	
  }
   
  the_link.onclick = function() {  
	 window.open(lnk_op,"n_win",win_atts);  return false; } ; 
 
}
