Come posso aggiungere la scrollbar su questo script?

codice:
<script type="text/javascript">
<!--
 function news() {
   var w = 550;
   var h = 330;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open("news/news.asp","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
 }
//-->
</script>
Grazie!