<!--
var hellotext = "Åwªï¥úÁ{¬õ«Óºô"
var thetext = "";
var started = false;
var step = 0;
var times = 1;
function welcometext() {
times--;
if (!times) {
if (!started) {
started = true;
window.status = hellotext;
setTimeout("anim()", 1);
}
thetext = hellotext;
}
}
function anim() {
step++;
if (step==18) step = 2;
if (step==1) window.status = '¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹';
if (step==2) window.status = '¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸';
if (step==3) window.status = '¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸';
if (step==4) window.status = '¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸';
if (step==5) window.status = '¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸';
if (step==6) window.status = '¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸';
if (step==7) window.status = '¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸' + thetext + '¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸';
if (step==8) window.status = '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸' + thetext + '¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸';
if (step==9) window.status = '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹' + thetext + '¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¸';
if (step==10) window.status = '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸' + thetext + '¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸';
if (step==11) window.status = '¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸' + thetext + '¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸';
if (step==12) window.status = '¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸';
if (step==13) window.status = '¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸';
if (step==14) window.status = '¡¸¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸¡¸';
if (step==15) window.status = '¡¸¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸¡¸';
if (step==16) window.status = '¡¸¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹¡¸';
if (step==17) window.status = '¡¹¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¸' + thetext + '¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¸¡¹';
setTimeout("anim()", 200);
}
document.write("<body onload=welcometext()>")
//-->