/*  弹出公告信息 */
$(document).ready(function() {
   PopNoticeFun();
 })

function PopNoticeFun()
{
    $.ajax({
        type:'post',
        url:'PopNotice.ashx',
        dataType:"",
        data:'',
        success:function(result){   
            if(result==typeof('undefined')||result==typeof('object'))
            {
                 PopNoticeFun();//如果出现错误！递归重新查询一次
                return ;
            }
            
            if(result!="0"&&result!=null&&result!=typeof('undefined')&&result!="")
            {
                //window.open("Notice.aspx?ID="+result);
	           window.open("Notice.aspx?ID="+result,"","scrollbars=yes,width=725,height=555") 
           }
          
        },
        error:function(result){
  
        }

    });
}
 

