/*function SymError()
{
  return true;
}

window.onerror = SymError;

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
*/

<!-- Begin
/*
var Message="Alf am 24.5. in Riga beim Song Contest und live in ORF 1";
var msg = "Wer, wenn nicht er! - Er hat Euch nicht belogen! - Weil der Mensch zählt!";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("wiper()",300); 

} else {
place++;
window.setTimeout("scrollIn()",50); 
   } 
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 50);
   }
}

timeID = 10;
stcnt = 16;
wmsg = new Array(33);
        wmsg[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                wmsg[i]="";
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }

function wiper()
{
        if (stcnt > -1)
		{
			str = wmsg[stcnt]; 
			if (stcnt-- < -40) stcnt=31;
			status = str;
			clearTimeout(timeID);
			timeID = setTimeout("wiper()",100);			 
		}
		else
		{ 
			timeID = 10;
			stcnt = 16;		
			str = wmsg[0];
			clearTimeout(timeID);
			window.setTimeout("scrollIn()", 5000);			
		}

}
*/
// End -->
