// $RCSfile: captcha.js,v $
// $Source: /cvs/finlayapsweb-live/cms/modules/captcha/captcha.js,v $, $Revision: 1.1 $, $Date: 2008/11/06 14:51:24 $, $State: Exp $

function bpCaptcha() {
	var img = $('captchaimg');
	if(img) {
		var date = new Date();
		img.src = 'cms/modules/captcha/captcha.php?ts=' + date.getUTCMilliseconds();
	}
	return false;
}
