//var basedir='live/';
var basedir='http://221.248.112.37/tocam/live/';
var imagename='current.jpeg';
var viewstop=0;
function liveView()
{
if (viewstop!=0)
return;
	document.slowpic.src = basedir + imagename + '?anticache=' + Math.random();
}
function startLiveView()
{
	window.setInterval('liveView()',30000); // 30S
}
function liveStop()
{
	viewstop=1;
}
if (window.addEventListener)
	window.addEventListener('load',startLiveView,false);
if (window.attachEvent)
	window.attachEvent('onload',startLiveView);

document.write("<img src='" + basedir + imagename + "' name='slowpic'>");


