function Cookie(){
	this.setCookie=function(name,value,times,path,domain){
		var paths="";
	    if(times!=null){
			var exp  = new Date();
			exp.setTime(exp.getTime() + times*60*1000);
			paths+=";expires=" + exp.toGMTString();
		}
		if(path!=null)paths+=";path="+path;
		if(domain!=null)paths+=";domain="+domain;
        document.cookie = name + "="+ escape (value) + paths;
    }
    this.getCookie=function(name){
        var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
        if(arr=document.cookie.match(reg)) return unescape(arr[2]);
        else return null;
    }
    this.delCookie=function(name){
        var exp = new Date();
        exp.setTime(exp.getTime() - 1);
        var cval=getCookie(name);
        if(cval!=null) document.cookie= name + "="+cval+";expires="+exp.toGMTString();
    }
	this.is=function(name){
		if(this.getCookie(name)==null)
			return false;
		else
			return true;
	}
}
function   randomChar(l){
   var   x="0123456789qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
   var   tmp="";
   for(var i=0;i<l;i++){
		tmp +=  x.charAt(Math.ceil(Math.random()*100000000)%x.length);
   }
   return   tmp;
}

window.top.defaultStatus="大业久久网 弘扬中国金银币文化·传播币市投资收藏价值·打造中国金银币行业门户,奖牌，徽章，标牌，纪念章，奖章，工艺品，礼品";