var Captcha = {
	
	img : new Image(),
	url : '',
	
	Reload : function(){
		document.getElementById('captcha').style.display = 'none';
		document.getElementById('contact_code').value = '';
		
		var now = new Date();
		Captcha.url = 'images/captcha/?form=contactform&theme=mint-chocolate&reload=' + now.getTime();
		Captcha.img.src = Captcha.url;
		},
	
	Update : function(){
		
		document.getElementById('captcha').style.display = 'inline';
		document.getElementById('captcha').src = Captcha.url;
		document.getElementById('contact_code').focus();
		}
	}

Utilities.AddEvent(Captcha.img, 'load', function(){
	
	setTimeout('Captcha.Update();', 500);
	});
