// JavaScript Document
function WEB_ECHO(TE,count){
	nunber=parseInt(count*2);
	num=TE.length;
	TEXTS='';
i=0;
a=0;
while(i<=nunber){
TEMP=TE.substr(a,1)	

if(TEMP.match(/[\w]/g)){
i++;
}else{
i=i+2;
}

a++;
TEXTS=TEXTS+TEMP;
}

if(TEXTS!=TE){
TEXTS=TEXTS.substr(0,TEXTS.length-1)+'..'
}
return TEXTS;
//return TE+TE.length
}
