// $RCSfile: captcha.js,v $
// $Source: /cvs/hedleyweb/includes/captcha/captcha.js,v $, $Revision: 1.1 $, $Date: 2008/07/21 08:55:46 $, $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;
}