Paul: Frage zu Homepage!

Beitrag lesen

Hallo Leute!
Ich hab auf meiner Homepage mit Javascript sowas erstellt,
dass oben im Browser mehrere verschiedenen Nachrichte kommen!
Hier mal der Text:

<script LANGUAGE="JavaScript">
<!-- Begin
var message = new Array();
// Set your messages below -- follow the pattern.
// To add more messages, just add more elements to the array.
message[0] = "Herzlich Willkommen auf meiner Hompage:";
message[1] = "www.Paulstrobel.de.vu";
message[2] = "Hier siehst du:";
message[3] = "Meinen Hamster,";
message[4] = "Einzigartige Stunts";
message[5] = "Coole Videos";
message[6] = "Bilder meiner Klasse";
message[6] = "lustige Dinge";
message[7] = "und GAMES zum zzocken";

// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).
var reps = 2;
var speed = 200; // Set the overall speed (larger number = slower action).
// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 10) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = '|Hallo-----| '+T+'            '; }
if (s == 2) { document.title = '|-Hallo----| '+T+'            '; }
if (s == 3) { document.title = '|--Hallo---| '+T+'            '; }
if (s == 4) { document.title = '|---Hallo--| '+T+'            '; }
if (s == 5) { document.title = '|----Hallo-| '+T+'            '; }
if (s == 6) { document.title = '|-----Hallo| '+T+'            '; }
if (s == 7) { document.title = '|----Hallo-| '+T+'            '; }
if (s == 8) { document.title = '|---Hallo--| '+T+'            '; }
if (s == 9) { document.title = '|--Hallo---| '+T+'            '; }
if (s == 10) { document.title = '|-Hallo----| '+T+'           '; }
if (C < (10 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
}
}
doTheThing();
// End -->
</script>

Das funktioniert auch so gut wie perfekt, bloß ein Problem gibt es,
schaut euch auf den 2 Seiten an:
http://pauls.ohost.de
www.paulstrobel.de.vu,
bei der unteren URL wird das Javascript nicht angezeigt,
obwohl die untere URL ja die Daten von der oberen bezieht!
könnt ihr mir sagen warum das dort nicht funktioniert?
Wäre dankbar für Atworten!