// Ausgangszustand var layerleft=-1000; // Wohin der Layer soll var layerend=0; // Variable setzen var intervalid; // Funktion zum verschieben function changePos(id){ document.getElementById(id).style.left=layerleft; } function moveIn(id){ if(layerleft>=layerend){ clearInterval(intervalid); } layerleft+=5; changePos(id); } function startInterval(id){ intervalid=setInterval("moveIn('"+id+"')",10); } //startInterval('logrl') // Nach 5 Sek. Funktion zum verschieben aufrufen window.setTimeout("startInterval('logrl')", 5000); function close_unique_werbelayer(){ document.getElementById('logrl').style.display = "none"; } function vis() { document.getElementById('close').style.display=''; } window.setTimeout("vis()", 10000); document.write('
");