<!--
   function win(url,wid,hei){
     var features =
      'width='        + wid +
      ',height='      + hei +
      ',directories=' + 'no' +
      ',location='    + 'no' +
      ',menubar='     + 'no' +
      ',scrollbars='  + 'no' +
      ',status='      + 'no' +
      ',toolbar='     + 'no' +
      ',Resizable='   + 'yes';

    var windowHandle = window.open(url,"_blank", features);
   }
// -->