// $RCSfile: captcha.js,v $
// $Source: /cvs/accoraweb-live/includes/captcha/captcha.js,v $, $Revision: 1.13 $, $Date: 2009/09/28 19:37:24 $, $State: Exp $

function bpCaptcha() {
	var img = document.getElementById('captchaimg');
	if(img) {
		var date = new Date();
		img.src = 'includes/captcha/captcha.php?ts=' + date.getUTCMilliseconds();
	}
	return false;
}
