function newCaptcha() {
	if(document.getElementById) {
		var theImage = document.getElementById("tx-captcha-image");
		var parts = theImage.src.split("&");
		//theImage.src = parts[0] + "&set=" + Math.round(Math.random()*100000);
		theImage.src = parts[0];
	} else {
		alert("Sorry, cannot autoreload new image\nSubmit the form and a new image will be loaded");
	}
}

