// This function is used in combination with a refresh button to get a new capthca image
// in case the user cannot read the current one.  The page is not reloaded to accomplish this.

function getCaptcha(){
	var d = new Date();
	document.getElementById('captchaImage').setAttribute('src', 'captcha/captcha.php?r='+ d.getTime());
}