initial upload

This commit is contained in:
2026-03-15 14:37:05 -04:00
parent aa22bd4cde
commit f0255622f3
5508 changed files with 8823230 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
function setVariables() {
if (navigator.appName == "Netscape") {
v = ".top=";
h = ".left=";
dS = "document.";
sD = "";
y = "window.pageYOffset";
x = "window.pageXOffset";
iW = "window.innerWidth";
iH = "window.innerHeight";
ZH = "iH-50";
}
else {
h = ".pixelLeft=";
v = ".pixelTop=";
dS = "";
sD = ".style";
y = "document.body.scrollTop";
x = "document.body.scrollLeft";
iW = "document.body.clientWidth";
iH = "441"
//eval(document.body.clientHeight);
ZH = (iH-50);
}
xyz = 500;
if(screen.height >= 768)
{
innerX = eval(iW) - 1001;
innerY = eval(iH) - 117;
}
else
{
innerX = eval(iW) - 777;
innerY = eval(iH) - 117;
}
object = "logo";
checkLocationA();
}
movex = 0;
movey = 0;
xdiff = 0;
ydiff = 0;
ystart = 50;
xstart = 0;
function checkLocation() {
yy = eval(y);
xx = eval(x);
//alert(y);
ydiff = ystart - yy;
xdiff = xstart - xx;
if ((ydiff < (-52)) || (ydiff > (1))) movey = Math.round(ydiff / 10), ystart -= movey;
if ((xdiff < (-1)) || (xdiff > (1))) movex = Math.round(xdiff / 10), xstart -= movex;
eval(dS + object + sD + v + (ystart + innerY));
eval(dS + object + sD + h + (xstart + innerX));
setTimeout("checkLocation()", 10);
}
function checkLocationA() {
ystart = eval(y);
xstart=eval(x);
}