Ciao a tutti, ho un problema di questo genere, ho inserito 2 java script nella mia home page, ma tutti e due insieme non mi funzionano.Ho non parte la popup oppure non parte il messaggio sullo status bar.
Qualcuno mi sa dire dove sbaglio, il codice che ho messo e questo:

<head>
<title>RTR - Assistenza Tecnica Audio Video</title>
<meta name="author" content="tiziano">
<script type="text/javascript">
function apri(url) {newin = window. open(url,'titolo','scrollbars=no,resizable=yes,wid th=200,height=200,status=no,location=no,toolbar=no '); }

var speed = 100
var pause = 1000
var timerID = null
var texttype = false
var ar = new Array()

ar[0] = "Rtr.it - centro assistenza tecnica audio-video"
ar[1] = "Riparazioni tvcolor, vcr, hifi, carstereo, e installazioni antenne"
ar[2] = "ed inoltre vendita computer, accessori, decoder satellitari , etc..."

var msgnow = 0
var offset = 0

function stopBanner() {
if (texttype)
clearTimeout(timerID)
texttype = false
}

function startBanner() {
stopBanner()
showBanner()
}

function showBanner() {
var text = ar[msgnow]

if (offset < text.length) {
if (text.charAt(offset) == " ")
offset++

var partialMessage = text.substring(0, offset + 1)
window.status = partialMessage
offset++
timerID = setTimeout("showBanner()", speed)
texttype = true
} else {
offset = 0
msgnow++
if (msgnow == ar.length)
msgnow = 0

timerID = setTimeout("showBanner()", pause)
texttype = true
}
}

</script>

</head>
<body bgcolor="#F3EBE0" OnLoad="apri('news.htm')">

<body onLoad="startBanner()">

Grazie a tutti