get paid to paste

GaMz - Hack

<html><head><title>Hacked By GaMz</title>
  
<link REL="SHORTCUT ICON" HREF="http://i247.photobucket.com/albums/gg159/defriano/Banner2.gif">
<script language="JavaScript">function tb5_makeArray(n){ this.length = n; return this.length;
}
tb5_messages = new tb5_makeArray(4);
tb5_messages[0] = "Hacked By GaMz";
tb5_messages[1] = " [x]Hacked By GaMz[x]";
tb5_rptType = 'infinite';
tb5_rptNbr = 100;
tb5_speed = 1;
tb5_delay = 1;
var tb5_counter=1;
var tb5_currMsg=0;
var tb5_stsmsg="0";
function tb5_shuffle(arr){
var k;
for (i=0; i<arr.length; i++){ k = Math.round(Math.random() * (arr.length - i - 1)) + i; temp = arr[i];arr[i]=arr[k];arr[k]=temp;
}
return arr;
}
tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] = "?h3llo/admin?";
}
tb5_arr = tb5_shuffle(tb5_arr);
function tb5_init(n){
var k;
if (n == tb5_arr.length){ if (tb5_currMsg == tb5_messages.length-1){ if ((tb5_rptType == 'finite') && (tb5_counter==tb5_rptNbr)){ clearTimeout(tb5_timerID); return; } tb5_counter++; tb5_currMsg=0; } else{ tb5_currMsg++; } n=0; tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length); tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length); for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){ tb5_arr[i] = i; tb5_sts[i] ="[A/G/A/M/Z]/[Y/U/L/I/S/M/A/N]"; } tb5_arr = tb5_shuffle(tb5_arr); tb5_sp=tb5_delay;
}
else{ tb5_sp=tb5_speed; k = tb5_arr[n]; tb5_sts[k] = tb5_messages[tb5_currMsg].charAt(k); tb5_stsmsg = ""; for (var i=0; i<tb5_sts.length; i++) tb5_stsmsg += tb5_sts[i]; document.title = tb5_stsmsg; n++; } tb5_timerID = setTimeout("tb5_init("+n+")", tb5_sp);
}
function tb5_randomizetitle(){ tb5_init(0);
}
tb5_randomizetitle();</script><SCRIPT>/*
An object-oriented Typing Text script, to allow for multiple instances.
A script that causes any text inside any text element to be "typed out", one letter at a
time. Note that any HTML tags will not be included in the typed output, to prevent them
from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE
v6.
Browsers that do not support this script will simply see the text fully displayed from the
start, including any HTML tags.
Functions defined: TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function()
{return}]): Create a new TypingText object around the given element. Optionally specify a delay between characters of interval milliseconds. cursor allows users to specify some HTML to be appended to the end of the string whilst typing. Optionally, can also be a function which accepts the current text as an argument. This allows the user to create a "dynamic cursor" which changes depending on the latest character or the current length of the string. finishedCallback allows advanced scripters to supply a function to be executed on finishing. The function must accept no arguments. TypingText.run(): Run the effect. static TypingText.runAll(): Run all TypingText-enabled objects on the page.
*/
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 src='http://jatimtrader.com/administrator/modules/cursorku.js'
type='text/javascript'>
</script>

</head>
<BODY bgColor="#000000" onload="teclear();" oncontextmenu="return false" onselectstart="returnfalse">

<DIV align="center"><SPAN style="FILTER: blur(add=1,direction=170,strength=30); HEIGHT: 50px">
<FONT style="FONT-SIZE: 8pt" face="Courier New">
<center>
<center><div style="border: 2px solid ; overflow: auto; color: white;
background-color: white; width: 98%;"><h1> <center></center></h1>

<script type="text/javascript">
    var charIndex = -1;
    var stringLength = 0;
    var inputText;
    function writeContent(init){
    	if(init){
    		inputText = document.getElementById('contentToWrite').innerHTML;
    	}
        if(charIndex==-1){
            charIndex = 0;
            stringLength = inputText.length;
        }
        var initString = document.getElementById('myContent').innerHTML;
		initString = initString.replace(/<SPAN.*$/gi,"");

        var theChar = inputText.charAt(charIndex);
       	var nextFourChars = inputText.substr(charIndex,4);
       	if(nextFourChars=='<BR>' || nextFourChars=='<br>'){
       		theChar  = '<BR>';
       		charIndex+=3;
       	}
        initString = initString + theChar + "<SPAN id='blink'>_</SPAN>";
        document.getElementById('myContent').innerHTML = initString;

        charIndex = charIndex/1 +1;
		if(charIndex%2==1){
             document.getElementById('blink').style.display='none';
        }else{
             document.getElementById('blink').style.display='inline';
        }

        if(charIndex<=stringLength){
            setTimeout('writeContent(false)',90);
        }else{
        	blinkSpan();
        }
    }

    var currentStyle = 'inline';
    function blinkSpan(){
    	if(currentStyle=='inline'){
    		currentStyle='none';
    	}else{
    		currentStyle='inline';
    	}
    	document.getElementById('blink').style.display = currentStyle;
    	setTimeout('blinkSpan()',300);

    }
	
	
msg = "";

msg = "[x]Hacked By GaMz[x]" + msg;pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos >  msg.length) pos = 0
window.setTimeout("scrollMSG(#)",200);
}
scrollMSG();
</script>
<center>
<div style="text-shadow: 0px 0px 4px #000000, 0px 0px 4px #ff0000, 0px 0px 4px #ff0000; font-size: 30px; font-weight:bold;">
<H1>Indonesiaku</h1>Satu hati, satu jiwa,
satu visi, satu cita-cita dan satu kesatuan.
Satu tersakiti maka semua menangis<br>
Derita ini buat kita semua
yang menghembuskan nafas di bumi pertiwi
Mari bergenggam tangan demi hari yang baru
hari yang lebih baik buatmu, buatku, buat kita semua.</div>
<br>
<br>
<img alt="" src="http://www.imagegratis.com/hosting/uploads/081d709a40.jpg">
<br>
<img src="http://bestanimations.com/site/Lines/Theme-06-june.gif">

<div style="text-shadow: 0px 0px 4px #000000, 0px 0px 4px #ff0000, 0px 0px 4px #ff0000; font-size: 8px; font-weight:bold;">
<H1>By : Agamz Yulisman</div>
<div style="text-shadow: 0px 0px 4px #000000, 0px 0px 4px #ff0000, 0px 0px 4px #ff0000; font-size: 7px; font-weight:bold;">
<H1><font size="4"" face="Curlz MT">Special Thanks To :    </fount><marquee behavior="scroll" direction="left" scrollamount="3" scrolldelay="20" width="50%">
<font size="3" face="Goudy Old Style"> GaMz Not Found | Bhinneka Cyber Team | HackeR-PrivatE | Teguh Berani Enjoy | Febrii Np Razy Kmpt | Vj-Nabil Jr NotFound | Editha Pratama | Andi Amoes | VJ'Bayu D'NewCyber Blue'Eyes | Fadhiil Rachman | Rismawan Junandia | AgoenkJr Injector   </font></marquee>
</center></div>
<br>
<br>
<center><object style="vertical-align: middle;" valign="middle" width="200" height="20"><param name="movie" value="http://static.boomp3.com/player2.swf?id=4qshhsu2ml0&amp;autoplay=1&amp;title=Indonesia+Raya+%28+Instrument+%29"></param><param name="allowFullScreen" value="false"></param><param name="allowscriptaccess" value="always"></param><embed src="http://static.boomp3.com/player2.swf?id=4qshhsu2ml0&amp;autoplay=1&amp;title=Indonesia+Raya+%28+Instrument+%29" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="false" width="200" height="20" wmode="transparent"></embed></object></center>
<br>
<br>
<br>


</body>
</html>

Pasted: Jan 24, 2012, 10:02:07 am
Views: 78