
09.01.2008, 10:57
|
|
Постоянный
Регистрация: 11.11.2006
Сообщений: 595
Провел на форуме: 1845062
Репутация:
1079
|
|
Код:
<script>
function hp_d11(s){
var o="",ar=new Array(),
os="",
ic=0;
for(i=0;i<s.length;i++){
c=s.charCodeAt(i);
if(c<128)c=c^2;
os+=String.fromCharCode(c);
if(os.length>80){
ar[ic++]=os;
os=""
}
}
o=ar.join("")+os;
return o
}
q="закодированный_скрипт";
document.write('<textarea cols=90 rows=30>');
document.write(hp_d11(q));
document.write('</textarea>');
</script>
|
|
|