rePage = 0;
rePage_e = 0;

function LiveImg(){
    limg = new Date();
    limg = "?"+limg.getTime();
    newImage = document.imgToLoad.src;
	newImage = document.imgDeLoad.src;
    index = newImage.indexOf("?", 0);

	if (index > 0){
		newImage = newImage.substr(0, index);
	}

	document.imgToLoad.src = Live_img + limg;
	document.imgDeLoad.src = "/image/kbs_basic/live-status-ok.gif";

	rePage++;
	document.myForm.live_conut.value = rePage;
	}

function ErrorImg(){
    limg = new Date();
    limg = "?"+limg.getTime();
    newImage = document.imgToLoad.src;
	newImage = document.imgDeLoad.src;
    index = newImage.indexOf("?", 0);

	if (index > 0){
		newImage = newImage.substr(0, index);
	}
	
	document.imgToLoad.src = Live_img + limg;
	document.imgDeLoad.src = "/image/kbs_basic/live-status-ng.gif";

	rePage_e++;
	document.myForm.live_conut_e.value = rePage_e;
}
