// JavaScript Document
   var new_win = null;

   function sample_win(addr, wdth, ht) {

      var options = "toolbar=no,location=no,directories=no"
                  + ",status=yes,menubar=no,scrollbars=yes"
                  + ",resizable=yes,width=" + wdth + ",height=" + ht;

      var new_win = window.open(addr,"NewWindow",options);

   self.name = 'parent'
   }