function outClog(){
	
	var imgObj = document.createElement("img");
	var Dt = new Date();
	var year = new String(Dt.getYear() + 1900);
	var month =  Dt.getMonth()+1;
	if(month<10){
		month = '0' + new String(month);
	} else {
		month = new String(month);
	}
	var day =  Dt.getDate();
	if(day<10){
		day = '0' + new String(day);
	} else {
		day = new String(day);
	}
	var hour =  Dt.getHours();
	if(hour<10){
		hour = '0' + new String(hour);
	} else {
		hour = new String(hour);
	}
	var min =  Dt.getMinutes();
	if(min<10){
		min = '0' + new String(min);
	} else {
		min = new String(min);
	}
	var sec =  Dt.getSeconds();
	if(sec<10){
		sec = '0' + new String(sec);
	} else {
		sec = new String(sec);
	}
	
	var nexturl = arguments[0].next;
	new Ajax.Request("http://" + location.host + "/pcstorage/cntlog/" + year + month + day + hour + min + sec + "?clog=" + arguments[0].key + "_" + arguments[0].type + "_" + arguments[0].logId, {method:"GET", onComplete:function(res){complete(res, nexturl)}});
};
function complete(res,nexturl) {
	location.href = nexturl;
};
function outClog2(){
	
	var imgObj = document.createElement("img");
	var Dt = new Date();
	var year = new String(Dt.getYear() + 1900);
	var month =  Dt.getMonth()+1;
	if(month<10){
		month = '0' + new String(month);
	} else {
		month = new String(month);
	}
	var day =  Dt.getDate();
	if(day<10){
		day = '0' + new String(day);
	} else {
		day = new String(day);
	}
	var hour =  Dt.getHours();
	if(hour<10){
		hour = '0' + new String(hour);
	} else {
		hour = new String(hour);
	}
	var min =  Dt.getMinutes();
	if(min<10){
		min = '0' + new String(min);
	} else {
		min = new String(min);
	}
	var sec =  Dt.getSeconds();
	if(sec<10){
		sec = '0' + new String(sec);
	} else {
		sec = new String(sec);
	}
	
	new Ajax.Request("http://" + location.host + "/pcstorage/cntlog/" + year + month + day + hour + min + sec + "?clog=" + arguments[0].key + "_" + arguments[0].type + "_" + arguments[0].logId, {method:"GET", onComplete:function(res){complete2(res)}});
};
function complete2(res,nexturl) {
};
