Ext.onReady(function(){
	getCookie('username','password');
	checkurl();
});
function checkurl(){
    	var href=window.location.href;
    	var abc=href.split("?");
    	var canshu=abc[1];
    	if(canshu != undefined && canshu!=null && canshu!=""){
	    	var mingcheng=canshu.split("=");
	    	if(mingcheng != undefined && mingcheng!=null && mingcheng!=""){
		    	var m=mingcheng[0];
		    	var v=mingcheng[1];
		    	if(v=='2846762706591134795'){
			    	alert("发布成功");
			    	alert("您可以登陆用户中心管理发布信息");
			    	window.location.href=glbRootPath+"/businesses/";
			    }else if(v=='8570640159425449281'){
                    alert("发布失败，请联系客服");
				}
	    	}
        }
}
