function refreshWebCam () {
	
	var imgT = gid('imglive');
	temp= imgT.src.split('?');
	var Md = new Date();
	imgT.src = temp[0]+"?text="+Md.getTime();
	
}

function timerWebcam() {	
	setTimeout('refreshWebCam()',5000);
}

