<!--
function reloadImg()
{
	status = "Reloading image ...";
	uniq = new Date();
	uniq = "?"+uniq.getTime();
	newImage = document.all.imgToLoad.src;
	index = newImage.indexOf("?", 0);
	if (index > 0)
	{
		newImage = newImage.substr(0, index);
	}
	status = document.all.imgToLoad.src;
	document.all.imgToLoad.src = newImage+uniq;
}
// -->