
/// <reference path="Karsa.js />
/// <reference path="KarsaAjax.js />

var KarsaCaptcha = {
	captchaImgElementName : 'obrazekCAPTCHA',
	captchaBase : '', 
	captchaTimeCode : '', 
	Init : function(captchaBase, captchaTimeCode){
		this.captchaBase		= captchaBase;
		this.captchaTimeCode	= captchaTimeCode;
	} ,

	Get : function(code) {
		return KarsaAjax.DirectCall(this.captchaBase + '?code='+code, null, 'GET').replace(/^\s+|\s+$/g, '');
	} , 
	
	Refresh : function() {
		$(this.captchaImgElementName).src += "0";	
	}, 
	
	Show : function() {
		$(this.captchaImgElementName).src = this.captchaBase + '?time=' + this.captchaTimeCode;
	}
	
}	