function openlink(url, w, h)
    {
      mreplywin = window.open('','mreplywin64'+Math.round(1000*Math.random()),'width=' + (w+15) + ',height=' + (h+25) + ',scrollbars=0,status=0,resizeable=0');
      mreplywin.location.href = url;
      mreplywin.focus(); // bring our subwindow to the front
      if (mreplywin.opener == null) mreplywin.opener = window;
    }



