function getNewCaptcha() {
	var img = document.getElementById("captcha");
	var timestamp = new Date();
	img.src = "/captcha.php?" + timestamp;
}

