Ich hab hier nen Script der nach dem einbauen von 3 weiteren bannern nicht mehr funktioniert.
Weiß wer wieso nicht ?
<script LANGUAGE="JavaScript">
// global variable for current sponsor
var sponsor = 2;
// function to link to appropriate sponsor
// (for demonstration, displays a dialog instead)
function GoSponsor() {
if (sponsor==1) window.location.href="http://test.de";
if (sponsor==2) window.location.href="http://www.test.de";
if (sponsor==3) window.location.href="http://www.beispiel.de";
if (sponsor==4) window.location.href="http://beispiel.html";
if (sponsor==5) window.location.href="http://www.test.de";
}
// function to rotate image (currently uses 5 images)
function rotate() {
if (++sponsor > 2) sponsor = 3;
if (++sponsor > 3) sponsor = 4;
if (++sponsor > 4) sponsor = 5;
if (++sponsor > 5) sponsor = 1;
document.images[0].src = "banner" + sponsor + ".gif";
window.setTimeout('rotate();',10000);
}
</script>
<body onLoad="window.setTimeout('rotate();',10000);">
<a HREF="javascript:GoSponsor();">
<p align="center"><img NAME="banner" SRC="banner1.gif" border="0" width="468" height="60">
</a></p>
Weiß wer wieso nicht ?
<script LANGUAGE="JavaScript">
// global variable for current sponsor
var sponsor = 2;
// function to link to appropriate sponsor
// (for demonstration, displays a dialog instead)
function GoSponsor() {
if (sponsor==1) window.location.href="http://test.de";
if (sponsor==2) window.location.href="http://www.test.de";
if (sponsor==3) window.location.href="http://www.beispiel.de";
if (sponsor==4) window.location.href="http://beispiel.html";
if (sponsor==5) window.location.href="http://www.test.de";
}
// function to rotate image (currently uses 5 images)
function rotate() {
if (++sponsor > 2) sponsor = 3;
if (++sponsor > 3) sponsor = 4;
if (++sponsor > 4) sponsor = 5;
if (++sponsor > 5) sponsor = 1;
document.images[0].src = "banner" + sponsor + ".gif";
window.setTimeout('rotate();',10000);
}
</script>
<body onLoad="window.setTimeout('rotate();',10000);">
<a HREF="javascript:GoSponsor();">
<p align="center"><img NAME="banner" SRC="banner1.gif" border="0" width="468" height="60">
</a></p>