﻿// JScript 文件

   function start()
    {
      
      $("#dlnews").load("GetNews.aspx");
      var count=document.getElementById ("txtCount").value;
      var url=document.getElementById ("txturl").value;
      
      if (count>0) 
      {
      window.open(url, "Newwindow", "height=480, width=650, toolbar=yes , menubar=no, scrollbars=yes, resizable=no, location=no, status=no") 
      
      document.getElementById ("txtCount").value=0;
      }
       else
     {
   
      }
    }


