﻿function DecryptCaptchaCode(asCode) {
	var res = "";
	for (var i=0; i < asCode.length; i++) {
		res += String.fromCharCode(asCode.charCodeAt(i)-1);
	}
	return res;
}

