var GaCaptcha = Class.create();	
GaCaptcha.prototype = {
	attributes : {},
	initialize: function(params){
		this.attributes['imageTagID'] 	= (Tool.objectKeyExists(params,'imageTagID'))?params['imageTagID']:'',
		this.attributes['handler'] 		= (Tool.objectKeyExists(params,'handler'))?params['handler']:''
	},
	load : function(){
		var stamp = new Date();	
		$(this.attributes['imageTagID']).src = this.attributes['handler']+'?dt='+stamp.getTime();
		return false;
	}
};
