<!-- Begin
function win ( pwidth, pheight, pleft, ptop, filename) 
{
      var windowprops = "scrollbars=yes, resizable=no" + 
                                        ",left=" + pleft + ",top=" + ptop + 
                                        ",width=" + pwidth + ",height=" + pheight;
     window.open(filename,"",windowprops);
}
// End -->