Sie sind auf Seite 1von 13

<HTML><HEAD><TITLE>Welcome to Haavril</TITLE>

<META http-equiv=Content-Language content=en-us>


<META http-equiv=Content-Type content="text/html; charset=utf-8">

</TD></TR></TBODY></TABLE></FORM>
<script type="text/javascript">
TypingText = function(element, interval, cursor, finishedCallback) {
if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
this.running = true; // Never run.
return;
}
this.element = element;
this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
this.interval = (typeof interval == "undefined" ? 100 : interval);
this.origText = this.element.innerHTML;
this.unparsedOrigText = this.origText;
this.cursor = (cursor ? cursor : "");
this.currentText = "";
this.currentChar = 0;
this.element.typingText = this;
if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
TypingText.all.push(this);
this.running = false;
this.inTag = false;
this.tagBuffer = "";
this.inHTMLEntity = false;
this.HTMLEntityBuffer = "";
}
TypingText.all = new Array();
TypingText.currentIndex = 0;
TypingText.runAll = function() {
for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
}
TypingText.prototype.run = function() {
if(this.running) return;
if(typeof this.origText == "undefined") {
setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We
haven't finished loading yet. Have patience.
return;
}
if(this.currentText == "") this.element.innerHTML = "";
// this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
if(this.currentChar < this.origText.length) {
if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
this.tagBuffer = "<";
this.inTag = true;
this.currentChar++;
this.run();
return;
} else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
this.tagBuffer += ">";
this.inTag = false;
this.currentText += this.tagBuffer;
this.currentChar++;
this.run();
return;
} else if(this.inTag) {
this.tagBuffer += this.origText.charAt(this.currentChar);
this.currentChar++;
this.run();
return;
} else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
this.HTMLEntityBuffer = "&";
this.inHTMLEntity = true;
this.currentChar++;
this.run();
return;
} else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
this.HTMLEntityBuffer += ";";
this.inHTMLEntity = false;
this.currentText += this.HTMLEntityBuffer;
this.currentChar++;
this.run();
return;
} else if(this.inHTMLEntity) {
this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
this.currentChar++;
this.run();
return;
} else {
this.currentText += this.origText.charAt(this.currentChar);
}
this.element.innerHTML = this.currentText;
this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function"
? this.cursor(this.currentText) : this.cursor) : "");
this.currentChar++;
setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
} else {
this.currentText = "";
this.currentChar = 0;
this.running = false;
this.finishedCallback();
}
}
</script>
<script type="text/javascript">
mwidth=20; // the number of characters in the display
mdelay=200; // delay in milliseconds between character shifts
dumpExtraSpaces=false; // set to true if you want to reduce multiple spaces to a single space
mpos=0;
chars=" 0123456789abcdefghijklmnopqrstuvwxyz+-*/=?^&().,'!~$";
content=new Array();
color=new Array();

colors=new Array();
colors['green']=0;
colors['yellow']=-27;
colors['red']=-54;
colors['blue']=-81;

colorind=new Array();
colorind[0]='green';
var mtxt;

function marqueeInit(){
mtxt=document.getElementById("Haavril").innerHTML.toLowerCase();
mtxt=mtxt.replace(/.../g,'~');
mtxt=mtxt.replace(/&/g,'&');
mtxt=mtxt.replace(/"/g,"'");
mtxt=mtxt.replace(/[/g,'(');
mtxt=mtxt.replace(/]/g,')');
mtxt=mtxt.replace(/{/g,'(');
mtxt=mtxt.replace(/}/g,')');
mtxt=mtxt.replace(/[nr]/g,' ');
if(dumpExtraSpaces) mtxt=mtxt.replace(/s{2,}/g,' ');
bpos=mtxt.indexOf('<');
attempt=0;
while(bpos>=0){
mtxt.search(/<([^>]*)>/);
ctmp=RegExp.$1;
colorind[bpos]=ctmp;
mtxt=mtxt.replace(/<[^>]*>/,'');
bpos=mtxt.indexOf('<');
attempt++;
if(attempt>500){
// prevent browser lockups if something goes fishy (open <)
alert('parse failure');
return false;
}
}
mcont="<div style='display:none'>"+mtxt+"<p>&nbsp;</p></div>";
for(i=0;i<mwidth;i++){
mcont+="<div class='digit' id='js_dig"+i+"'></div>n";
mtxt=' '+mtxt+' ';
}
curcolor=0;
for(i=0;i<mtxt.length;i++){
if(colorind[i-mwidth]!=null){
curcolor=colors[colorind[i-mwidth]]||0;
}
color[i]=curcolor;
content[i]=-16*chars.indexOf(mtxt.substr(i,1));
}
document.getElementById("ledmarquee").style.width=(mwidth*16)+'px';
document.getElementById("ledmarquee").innerHTML=mcont;
document.getElementById("ledmarquee").style.visibility='visible';
mtimer=setInterval('marqueeScroll()',mdelay);
document.getElementById("ledContainer").style.width=(10+mwidth*16)+'px';
}

function marqueeScroll(){
for(i=0;i<mwidth;i++){
document.getElementById('js_dig'+i).style.backgroundPosition=content[i+mpos]+'px '+color[i+mpos]
+'px';
}
mpos++;
if(mpos==mtxt.length-mwidth) mpos=0;
}

function onloadAppend(func){
var oldonload=window.onload;
if(typeof window.onload!='function'){
window.onload=func;
} else {
window.onload=function(){
if(oldonload) {
oldonload();
}
func();
}
}
}

onloadAppend(marqueeInit);
</script>

<SCRIPT language=JavaScript>
msg = new Array(); //strings written in screen
msg[0] = "Haavril";
msg[1] = "Welcome to Haavril";

text1 = ""; //the same as text2, only the last character is highlighted
text2 = ""; //current string, which will be written
count = 0; //char index in string text
count2 = 0; //number of strings

text = msg[0].split(""); //text - string written

function writetext() { //show strings above on screen


text1 = text2 + "<font color='00ff00'>" + text[count] + "</font>";
text2 += text[count];
document.all["nothing"].innerHTML = text1; //where to write

if (count < text.length-1){


count++;
setTimeout('writetext()', 25);
}
else { //if this string is written, get the new string
count = 0;

if (count2 != 4) { //write 4 strings


count2++;
text2 += "<p>"; //a new line
text = eval('msg['+count2+'].split("")'); //get the new string to text
setTimeout('writetext()', 25);
}
}
}
</SCRIPT>
<STYLE type=text/css>.matrix {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10pt; PADDING-BOTTOM: 0px; MARGIN:
0px; WIDTH: 10px; PADDING-TOP: 0px; FONT-FAMILY: Lucida Console, Courier, Monotype; TEXT-
ALIGN: center
}
</STYLE>
</HEAD>
<BODY text=#167715 background="http://img30.imageshack.us/img30/5011/pixh.gif" bgColor=#000000
onload=writetext() oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
<P></P>
<SCRIPT language=JavaScript>
msg = new Array(); //strings written in screen
msg[0] = "<h2><u><center>..::--- Wellcome To Haavril---::..</center></u></h2>";
msg[1] = " Có việc gì nhớ PM Y!: Haavril OK!";

text1 = ""; //the same as text2, only the last character is highlighted
text2 = ""; //current string, which will be written
count = 0; //char index in string text
count2 = 0; //number of strings

text = msg[0].split(""); //text - string written

function writetext() { //show strings above on screen


text1 = text2 + "<font color='00ff00'>" + text[count] + "</font>";
text2 += text[count];
document.all["nothing"].innerHTML = text1; //where to write

if (count < text.length-1){


count++;
setTimeout('writetext()', 25);
}
else { //if this string is written, get the new string
count = 0;

if (count2 != 4) { //write 4 strings


count2++;
text2 += "<p>"; //a new line
text = eval('msg['+count2+'].split("")'); //get the new string to text
setTimeout('writetext()', 25);
}
}
}
</SCRIPT>

<DIV align=center><FONT style="FONT-SIZE: 4pt" face="Times New Roman"><FONT


class=pic2ascii><BR><FONT color=#000000>##1</FONT><FONT
color=#808080>#</FONT><FONT color=#ffffff>0</FONT><FONT
color=#808080>@</FONT><FONT color=#000000>0#0@101@0@0#@1@@#0#@</FONT><FONT
color=#c0c0c0>1</FONT><FONT color=#000000>1@#1#</FONT><BR><FONT
color=#000000>01</FONT><FONT color=#808080>#</FONT><FONT
color=#ffffff>0</FONT><FONT color=#808080>1</FONT><FONT
color=#000000>0111@#1#@@###@#00##01@</FONT><FONT color=#808080>#</FONT><FONT
color=#000000>000@</FONT><BR><FONT color=#000000>01</FONT><FONT
color=#ffffff>@</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>#01@#@</FONT><FONT color=#808080>0111@10#1@</FONT><FONT
color=#000000>@0@010#</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>111#</FONT><BR><FONT color=#000000>@</FONT><FONT
color=#808080>#</FONT><FONT color=#ffffff>1</FONT><FONT
color=#808080>1</FONT><FONT color=#000000>011@#</FONT><FONT
color=#808080>#</FONT><FONT color=#c0c0c0>0@00@10</FONT><FONT
color=#808080>0@#@</FONT><FONT color=#000000>@11110</FONT><FONT
color=#c0c0c0>@</FONT><FONT color=#000000>@@00</FONT><BR><FONT
color=#000000>0</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#ffffff>1</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>##1</FONT><FONT color=#808080>01</FONT><FONT
color=#c0c0c0>1@</FONT><FONT color=#ffffff>1#1@</FONT><FONT
color=#c0c0c0>@0#</FONT><FONT color=#808080>#@1</FONT><FONT
color=#000000>1</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#000000>10##</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>000@</FONT><BR><FONT color=#000000>1</FONT><FONT
color=#c0c0c0>@</FONT><FONT color=#ffffff>1</FONT><FONT
color=#c0c0c0>0</FONT><FONT color=#808080>1</FONT><FONT
color=#000000>@</FONT><FONT color=#808080>1</FONT><FONT
color=#c0c0c0>0</FONT><FONT color=#808080>0</FONT><FONT
color=#c0c0c0>#</FONT><FONT color=#ffffff>#@0#1@</FONT><FONT
color=#c0c0c0>1#@</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>@</FONT><FONT color=#c0c0c0>#</FONT><FONT
color=#808080>0</FONT><FONT color=#000000>1@</FONT><FONT
color=#c0c0c0>10</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>@100</FONT><BR><FONT color=#000000>0</FONT><FONT
color=#808080>#</FONT><FONT color=#ffffff>1</FONT><FONT
color=#c0c0c0>0</FONT><FONT color=#808080>@#</FONT><FONT
color=#000000>@</FONT><FONT color=#808080>#</FONT><FONT
color=#c0c0c0>##</FONT><FONT color=#ffffff>@#1@1@@</FONT><FONT
color=#c0c0c0>@@</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>0</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>#</FONT><FONT color=#808080>0</FONT><FONT
color=#c0c0c0>#@0</FONT><FONT color=#000000>110@0</FONT><BR><FONT
color=#000000>@0</FONT><FONT color=#c0c0c0>00</FONT><FONT
color=#808080>@1</FONT><FONT color=#000000>@</FONT><FONT
color=#808080>0</FONT><FONT color=#c0c0c0>01</FONT><FONT
color=#ffffff>###@1##</FONT><FONT color=#c0c0c0>@0@</FONT><FONT
color=#808080>#</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>#</FONT><FONT color=#c0c0c0>10@</FONT><FONT
color=#808080>0</FONT><FONT color=#000000>01@11</FONT><BR><FONT
color=#000000>1#1</FONT><FONT color=#808080>1@</FONT><FONT
color=#000000>#@</FONT><FONT color=#808080>1</FONT><FONT
color=#c0c0c0>11</FONT><FONT color=#ffffff>11@0#1#</FONT><FONT
color=#c0c0c0>@1@</FONT><FONT color=#808080>@1</FONT><FONT
color=#000000>##</FONT><FONT color=#c0c0c0>#</FONT><FONT
color=#808080>0</FONT><FONT color=#000000>@#</FONT><FONT
color=#c0c0c0>1</FONT><FONT color=#000000>@00</FONT><BR><FONT
color=#000000>#@</FONT><FONT color=#808080>#</FONT><FONT
color=#000000>#11</FONT><FONT color=#808080>00</FONT><FONT
color=#c0c0c0>@#</FONT><FONT color=#ffffff>1#0##10</FONT><FONT
color=#c0c0c0>0#0</FONT><FONT color=#808080>10</FONT><FONT
color=#000000>1@@@0#</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>101</FONT><BR><FONT color=#000000>#@0</FONT><FONT
color=#808080>10#@</FONT><FONT color=#c0c0c0>@01#</FONT><FONT
color=#ffffff>#100@@</FONT><FONT color=#c0c0c0>##0</FONT><FONT
color=#808080>###</FONT><FONT color=#000000>11#0@#001</FONT><BR><FONT
color=#000000>#0</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>#</FONT><FONT color=#808080>0</FONT><FONT
color=#c0c0c0>00#</FONT><FONT color=#ffffff>1</FONT><FONT
color=#c0c0c0>0</FONT><FONT color=#808080>@</FONT><FONT
color=#c0c0c0>#</FONT><FONT color=#ffffff>@0@#</FONT><FONT
color=#c0c0c0>00@</FONT><FONT color=#808080>#0</FONT><FONT
color=#000000>##@@#@</FONT><FONT color=#c0c0c0>#</FONT><FONT
color=#000000>@1#0</FONT><BR><FONT color=#000000>#0</FONT><FONT
color=#c0c0c0>0</FONT><FONT color=#000000>#</FONT><FONT
color=#808080>1</FONT><FONT color=#c0c0c0>@#</FONT><FONT
color=#ffffff>1@</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#808080>@</FONT><FONT color=#c0c0c0>@0</FONT><FONT
color=#ffffff>##1</FONT><FONT color=#c0c0c0>@1</FONT><FONT
color=#808080>#@</FONT><FONT color=#c0c0c0>#0#</FONT><FONT
color=#808080>0</FONT><FONT color=#000000>1##00#@@</FONT><BR><FONT
color=#000000>#11#</FONT><FONT color=#808080>0</FONT><FONT
color=#c0c0c0>@</FONT><FONT color=#ffffff>0#1@</FONT><FONT
color=#c0c0c0>1</FONT><FONT color=#808080>1</FONT><FONT
color=#c0c0c0>@11#@</FONT><FONT color=#808080>#0</FONT><FONT
color=#c0c0c0>11@1@</FONT><FONT color=#808080>0</FONT><FONT
color=#000000>10#0000</FONT><BR><FONT color=#000000>1@@#0</FONT><FONT
color=#ffffff>#</FONT><FONT color=#c0c0c0>#</FONT><FONT
color=#808080>0@</FONT><FONT color=#c0c0c0>##011@1#</FONT><FONT
color=#808080>#</FONT><FONT color=#c0c0c0>##0</FONT><FONT
color=#808080>@01@0</FONT><FONT color=#000000>0011#0</FONT><BR><FONT
color=#000000>1#</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>##</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#808080>#</FONT><FONT color=#000000>1#0#</FONT><FONT
color=#c0c0c0>#</FONT><FONT color=#808080>1#</FONT><FONT
color=#c0c0c0>@#</FONT><FONT color=#000000>@</FONT><FONT
color=#c0c0c0>0#1</FONT><FONT color=#808080>0</FONT><FONT
color=#000000>@1@@#1#0@@0</FONT><BR><FONT color=#000000>1#</FONT><FONT
color=#808080>00</FONT><FONT color=#000000>1</FONT><FONT
color=#808080>1</FONT><FONT color=#000000>0</FONT> <!--sdsdsd --><FONT
color=#ff0000><SPAN id=fade1>1#0</SPAN></FONT> <FONT
color=#000000>#@</FONT><FONT color=#808080>10</FONT><FONT
color=#000000>@</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>#</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#808080>0</FONT><FONT color=#000000>11</FONT> <!--sdsdsd --><FONT
color=#ff0000><SPAN id=fade2>1##</SPAN></FONT> <FONT
color=#000000>0@@#0#@1</FONT><BR><FONT color=#000000>11</FONT><FONT
color=#808080>1</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#808080>00</FONT><FONT color=#000000>@</FONT> <!--sdsdsd --><FONT
color=#ff0000><SPAN id=fade3>0@01</SPAN></FONT> <FONT
color=#000000>0@1@0@</FONT><FONT color=#808080>@</FONT><FONT
color=#000000>10</FONT> <!--sdsdsd --><FONT color=#ff0000><SPAN
id=fade4>0111</SPAN></FONT> <FONT color=#000000>##@0@#0@</FONT><BR><FONT
color=#000000>#0</FONT><FONT color=#808080>1</FONT><FONT
color=#ffffff>@</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#808080>0</FONT><FONT color=#000000>11</FONT> <!--sdsdsd --><FONT
color=#ff0000><SPAN id=fade5>11#</SPAN></FONT> <FONT
color=#000000>1##@0@#@1</FONT> <!--sdsdsd --><FONT color=#ff0000><SPAN
id=fade6>###</SPAN></FONT> <FONT color=#000000>@0#</FONT><FONT
color=#808080>@</FONT><FONT color=#000000>00@#@</FONT><BR><FONT
color=#000000>@@0</FONT><FONT color=#c0c0c0>1</FONT><FONT
color=#ffffff>#</FONT><FONT color=#c0c0c0>0@</FONT><FONT
color=#000000>1@0@@##1</FONT><FONT color=#808080>@#</FONT><FONT
color=#000000>@@@@1</FONT><FONT color=#808080>@#00</FONT><FONT
color=#000000>@00@01</FONT><BR><FONT color=#000000>10@</FONT><FONT
color=#c0c0c0>##</FONT><FONT color=#ffffff>1@0@</FONT><FONT
color=#c0c0c0>0</FONT><FONT color=#808080>#@</FONT><FONT
color=#000000>@#</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#ffffff>#</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#808080>1</FONT><FONT color=#000000>#0</FONT><FONT
color=#808080>1010#</FONT><FONT color=#000000>0101@0#</FONT><BR><FONT
color=#000000>0@01</FONT><FONT color=#808080>100</FONT><FONT
color=#c0c0c0>111</FONT><FONT color=#808080>@0#@</FONT><FONT
color=#ffffff>01</FONT><FONT color=#808080>@</FONT><FONT
color=#c0c0c0>#</FONT><FONT color=#808080>1</FONT><FONT
color=#000000>#10@#0@#0##@@</FONT><BR><FONT color=#000000>0100#0</FONT><FONT
color=#808080>110@@</FONT><FONT color=#c0c0c0>1</FONT><FONT
color=#808080>#</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#ffffff>0</FONT><FONT color=#808080>#</FONT><FONT
color=#000000>@</FONT><FONT color=#808080>01</FONT><FONT
color=#000000>#1@#000@101@0</FONT><BR><FONT
color=#000000>01@1@1#@01</FONT><FONT
color=#808080>@</FONT><FONT color=#c0c0c0>110#</FONT><FONT
color=#000000>@11</FONT><FONT color=#808080>0</FONT><FONT
color=#000000>@1@0@#000@#0#</FONT><BR><FONT
color=#000000>##@0##1@@#</FONT><FONT
color=#808080>#</FONT><FONT color=#ffffff>1</FONT><FONT
color=#c0c0c0>0@@</FONT><FONT color=#000000>0@#</FONT><FONT
color=#808080>#</FONT><FONT color=#000000>0110@#001@10#</FONT><BR><FONT
color=#000000>#01@00@#@@</FONT><FONT color=#808080>@</FONT><FONT
color=#ffffff>1@#</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#000000>#</FONT><FONT color=#ffffff>0</FONT><FONT
color=#000000>1</FONT><FONT color=#808080>0</FONT><FONT
color=#000000>01@</FONT><FONT color=#808080>1</FONT><FONT
color=#000000>10@01@##0</FONT><BR><FONT color=#000000>@##11010</FONT><FONT
color=#808080>1</FONT><FONT color=#000000>@</FONT><FONT
color=#c0c0c0>0@#</FONT><FONT color=#ffffff>@#</FONT><FONT
color=#c0c0c0>1</FONT><FONT color=#ffffff>1</FONT><FONT
color=#c0c0c0>@0</FONT><FONT color=#000000>@</FONT><FONT
color=#808080>1</FONT><FONT color=#000000>@</FONT><FONT
color=#808080>@</FONT><FONT color=#000000>#@101#0#1</FONT><BR><FONT
color=#000000>11@@#1@@</FONT><FONT color=#808080>1</FONT><FONT
color=#000000>#</FONT><FONT color=#c0c0c0>#@1</FONT><FONT
color=#808080>@</FONT><FONT color=#c0c0c0>#</FONT><FONT
color=#ffffff>@</FONT><FONT color=#c0c0c0>1</FONT><FONT
color=#ffffff>@</FONT><FONT color=#c0c0c0>@0</FONT><FONT
color=#808080>1</FONT><FONT color=#000000>#1#11111@00</FONT><BR><FONT
color=#000000>10#@1001@@</FONT><FONT color=#c0c0c0>#</FONT><FONT
color=#ffffff>1</FONT><FONT color=#808080>#</FONT><FONT
color=#c0c0c0>0#@1</FONT><FONT color=#ffffff>0</FONT><FONT
color=#c0c0c0>#1</FONT><FONT color=#808080>#</FONT><FONT
color=#000000>11@101##011</FONT><BR><FONT color=#000000>@#@01@0#0#</FONT><FONT
color=#808080>1</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#000000>1</FONT><FONT color=#c0c0c0>0</FONT><FONT
color=#ffffff>#</FONT><FONT color=#c0c0c0>@</FONT><FONT
color=#808080>1</FONT><FONT color=#ffffff>@</FONT><FONT
color=#c0c0c0>#</FONT><FONT color=#808080>0</FONT><FONT
color=#000000>@@@@00100@11</FONT><BR><FONT
color=#000000>@@0#@#1@0#10@</FONT><FONT color=#808080>@</FONT><FONT
color=#c0c0c0>0#</FONT><FONT color=#000000>1</FONT><FONT
color=#c0c0c0>@</FONT><FONT color=#808080>0</FONT><FONT
color=#000000>##11111#010@0</FONT><BR><FONT
color=#000000>1@#0#1@010@#011@1@#@0000101@#0@0</FONT></FONT></FONT>

<CENTER></CENTER><FONT style="FONT-SIZE: 4pt"


face="Times New Roman"></FONT></DIV>

<table align="center" border="1" height="150" width="400">


<tbody background="http://lyrics.ringophone.com/HDanimWP/Matrix%20Rain-101772.gif"><tr>
<td valign="top"><p id="hack" style="margin-left: 3px;">

<font color="#F00000">Please Wait . . . . . . </font> <br>


<font color="#FF9000"> Server connected</font><br>
<font color="#FF9000">+= Server checked . . . . ... </font><font color="#FFFF00">Server
deleted...</font><br>
<font color="#FF9000">+= Site checked By <font color="#F00000">Haavril</font></font> <br>
<font color="#FFFF00">+= Security ............. Zore</font>
<br>
<font color="#00FFFF">Contact me to have the support </font> <br>
<br>
Process complete.... <br>

</p></td>
</tr>
</tbody></table>
<big><b><b>

<CENTER><SPAN face="Impact" 1pt="" font-size:="">


<DIV id=nothing style="FONT-FAMILY: ''Times New Roman">
<P></P>
<P><FONT color=#00ff00></FONT></P></DIV>
<TABLE align=center>
<TBODY></TBODY></TABLE>

<SCRIPT language=JavaScript type=text/javascript>


<!--
var rows=1; // must be an odd number
var speed=20; // lower is faster
var reveal=0; // between 0 and 2 only. The higher, the faster the word appears
var effectalign="default" //enter "center" to center it.

/***********************************************
* The Matrix Text Effect- by Richard Womersley ([url]http://www.mf2fm.co.uk/rv[/url])
* This notice must stay intact for use
* Visit [url]http://www.dynamicdrive.com/[/url] for full source code
***********************************************/

var w3c=document.getElementById && !window.opera;;


var ie45=document.all && !window.opera;
var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
var m_coch=new Array();
var m_copo=new Array();
function matrix() {
if (!w3c && !ie45) return
var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
ma_txt=" "+ma_txt+" ";
columns=ma_txt.length;
if (w3c) {
while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
ma_tab=document.createElement("table");
ma_tab.setAttribute("border", 0);
ma_tab.setAttribute("align", effectalign);
ma_tab.style.backgroundColor="#000000";
ma_bod=document.createElement("tbody");
for (x=0; x<rows; x++) {
ma_row=document.createElement("tr");
for (y=0; y<columns; y++) {
matemp=document.createElement("td");
matemp.setAttribute("id", "Mx"+x+"y"+y);
matemp.className="matrix";
matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
ma_row.appendChild(matemp);
}
ma_bod.appendChild(ma_row);
}
ma_tab.appendChild(ma_bod);
matrix.appendChild(ma_tab);
} else {
ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
for (var x=0; x<rows; x++) {
ma_tab+='<t'+'r>';
for (var y=0; y<columns; y++) {
ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'">&nbsp;</'+'td>';
}
ma_tab+='</'+'tr>';
}
ma_tab+='</'+'table>';
matrix.innerHTML=ma_tab;
}
ma_cho=ma_txt;
for (x=0; x<columns; x++) {
ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
m_copo[x]=0;
}
ma_bod=setInterval("mytricks()", speed);
}

function mytricks() {
x=0;
for (y=0; y<columns; y++) {
x=x+(m_copo[y]==100);
ma_row=m_copo[y]%100;
if (ma_row && m_copo[y]<100) {
if (ma_row<rows+1) {
if (w3c) {
matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
matemp.firstChild.nodeValue=m_coch[y];
}
else {
matemp=document.all["Mx"+(ma_row-1)+"y"+y];
matemp.innerHTML=m_coch[y];
}
matemp.style.color="#33ff66";
matemp.style.fontWeight="bold";
}
if (ma_row>1 && ma_row<rows+2) {
matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-
2)+"y"+y];
matemp.style.fontWeight="normal";
matemp.style.color="#00ff00";
}
if (ma_row>2) {
matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-
3)+"y"+y];
matemp.style.color="#009900";
}
if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
else if (ma_row<rows+2) m_copo[y]++;
else if (m_copo[y]<100) m_copo[y]=0;
}
else if (Math.random()>0.9 && m_copo[y]<100) {
m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
m_copo[y]++;
}
}
if (x==columns) clearInterval(ma_bod);
}

function zoomer(ycol) {
var mtmp, mtem, ytmp;
if (m_copo[ycol]==Math.floor(rows/2)+1) {
for (ytmp=0; ytmp<rows; ytmp++) {
if (w3c) {
mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
mtmp.firstChild.nodeValue=m_coch[ycol];
}
else {
mtmp=document.all["Mx"+ytmp+"y"+ycol];
mtmp.innerHTML=m_coch[ycol];
}
mtmp.style.color="#33ff66";
mtmp.style.fontWeight="bold";
}
if (Math.random()<reveal) {
mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
}
if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
m_copo[ycol]+=199;
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]>200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
}
mtmp.style.fontWeight="normal";
mtem.style.fontWeight="normal";
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
if (m_copo[ycol]>100 && m_copo[ycol]<200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
mtmp.firstChild.nodeValue=String.fromCharCode(160);
mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
mtem.firstChild.nodeValue=String.fromCharCode(160);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
mtmp.innerHTML=String.fromCharCode(160);
mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
mtem.innerHTML=String.fromCharCode(160);
}
setTimeout("zoomer("+ycol+")", speed);
}
}
// -->
setTimeout('matrix()', 1);

col=0;
function fadein()
{
document.getElementById("fade1").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade2").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade3").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade4").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade5").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade6").style.color="rgb(" + col + ",0,0)";
col+=5;
if(col<255) setTimeout('fadein()', 1);
if(col==255) setTimeout('fadeout()', 1);
}

function fadeout()
{
document.getElementById("fade1").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade2").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade3").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade4").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade5").style.color="rgb(" + col + ",0,0)";
document.getElementById("fade6").style.color="rgb(" + col + ",0,0)";
col-=5;
if(col>0) setTimeout('fadeout()', 1);
if(col==0) setTimeout('fadein()', 1);
}

setTimeout('fadein()', 1);
</SCRIPT>

<SPAN><CENTER><DIV id=matrix>Làm bạn nhé!</DIV></SPAN></CENTER><!-- -->

<SCRIPT type=text/javascript>if(typeof(urchinTracker)=='function'){_uacct="UA-230305-
2";_udn="none";_uff=false;urchinTracker();}</SCRIPT>

<SCRIPT type=text/javascript>_qacct="p-44naSaXtNJt26";quantserve();</SCRIPT>
<p><embed src="http://www.4shared.com/embed/285106311/f9a38f73/preview.swf" width="0" height="0"
allowfullscreen="true" allowscriptaccess="always"></embed></p>
<script type="text/javascript">
new TypingText(document.getElementById("hack"), 100, function(i){ var ar = new Array("_",""); return " " +
ar[i.length % ar.length]; });
TypingText.runAll();
</script>
</BODY></HTML>

Das könnte Ihnen auch gefallen