function newCaptcha(){

	var t = new Date; // Generic JS date object
	var unixtime_ms = t.getTime();

	img = document.getElementById('imgCaptcha');
	img.src = "/captcha/captcha.php?" + unixtime_ms;

}
