function MakeWin(url,ww,hh,scrl,WinName)
  {
   NLWindow = window.open("",WinName,"toolbar=no,location=no,status=no,scrollbars="+scrl+",width="+ww+",innerWidth="+ww+",height="+hh+",innerheight="+hh+",screenX=100,screenY=100,pageXoffset=100,pageYoffset=100,resizable=yes");

   if (NLWindow.frames.length == 0)
     {
     NLWindow = window.open(url,WinName,"toolbar=no,location=no,status=no,scrollbars="+scrl+",width="+ww+",innerWidth="+ww+",height="+hh+",innerheight="+hh+",screenX=100,screenY=100,pageXoffset=100,pageYoffset=100,resizable=yes");
     }
   else
     {
     NLWindow.location.href = url;
     }
     NLWindow.focus();

  }
function Commit(url,Comtext)
  {
  if(confirm(Comtext) == true)
    {
    document.location.href=url;
    }
  else
    {
    
    }
  }
