(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);
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>
<style>
body {
padding:0;
margin:0;
background-image:url("http://tux.site50.net/img/Flag.gif");
background-repeat: no-repeat;
background-position:center;
background-color: black;
color: #00ff00;
font: normal 80% Verdana;
margin-top: 0px;
margin-left: 0px;
padding: 0;
margin-right: 0px;
}
td{font-family: verdana; font-size: 9pt; color: #fff}
a{font-family: verdana; font-size: 12pt; color: #00ff00}
/* REMOVE HORIZONTAL SCROLLBAR*/
body {
overflow-x: hidden;
}
/* REMOVE VERTICAL SCROLLBAR*/
body {
overflow-y: hidden;
}
</style>
<body bgcolor="#000000"><center>
<div id="example1"></div>
<p id="example2">
=======[ Message From cYb3r_jOk3r ]=======
<BR>
We are ready battle against MALAYSIA H4X0R
<BR><BR>
YOUR <a href="http://malingsial.serverisdown.org/">SERVER IS DOWN</a>
<BR><BR>
Follow Me If You Can. Malaysia Maling Asia (Malaysia Trully Thief in Asia)
<BR><BR>
SOEMPAH PEMUDA
<BR><BR>
Pertama :
<br><BR>
KAMI POETRA DAN POETRI INDONESIA MENGAKOE BERTOEMPAH DARAH JANG SATOE, TANAH AIR INDONESIA
<br><BR>
Kedua :
<br><BR>
KAMI POETRA DAN POETRI INDONESIA, MENGAKOE BERBANGSA JANG SATOE, BANGSA INDONESIA
<br><BR>
Ketiga :
<br><BR>
KAMI POETRA DAN POETRI INDONESIA MENGJOENJOENG BAHASA PERSATOEAN, BAHASA INDONESIA
<br><br>
With all Crew :
<br><br><center>
H4CK3D BY cYb3r_jOk3r
<br><br>
M364TR0N, d3ViLn3T, Gonzhack, ran, CYB3R_TR0N, Saint, TUKULESTO, -0ghy- , bL4ck_3n91n3, MERDEKA !!!!!!!
<BR><BR>
<a href="http://indonesiacoder.co.cc/">Indonesia Coder</a> & <a href="http://defacer.biz/">Defacer</a>
</b></p>
<script type="text/javascript">
//Define first typing example:
new TypingText?(document.getElementById("example1"));
//Define second typing example (use "slashing" cursor at the end):
new TypingText?(document.getElementById("example2"), -100000, function(i){
var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length %
ar.length]; });
//Type out examples:
TypingText?.runAll();
</script>
<script language=JavaScript?>
<!--
var message="Down By Don Tukulesto!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers |