function web() {
  window.open('weblink.htm','','width=615, height=515, top=170, left=80, scrollbars=yes,resizable=yes');
}

function konf() {
  window.open('chat.htm','','width=570, height=545, top=100, left=80, scrollbars=yes,resizable=yes');
}

function mon() {
  window.open('monitor.htm','','width=622, height=500, top=100, left=80, scrollbars=yes,resizable=yes');
}

function change() {
  window.open('fileexchange.htm','','width=760, height=270, top=100, left=80, scrollbars=yes,resizable=yes');
}

function bmail() {
  window.open('businessmail.htm','','width=780, height=470, top=100, left=80, scrollbars=yes,resizable=yes');
}
function seminar(){
 window.open('februar.htm','','width=505,height=250,top=100,left=100,scrollbars=no,resizable=no');
 }

var delay=70;
var nextm=0;

var msg=new Array
(
	'Der Tex',
	'<b>NEWS</b>',
	'<b><SPAN class=a12bb>SPAM, SPAM und noch mal SPAM und DIE GEGENMASSNAHME!</span></b>',
	'NACHRICHTEN'
);

var cols=new Array("ffffff", "d0d0ff", "b0b0ff", "9090ff", "7070ff", "5050ff", "3030ff", "1010ff", "0000ff");

function start_ticker()
{
	do_ticker(msg[0], 1,1);
}

function do_ticker(text, col, dir)
{
	var out='<font color="#0000FF" size="4" face="Arial"><font color="#'+cols[col]+'">'+text+'</font></font>';

	if(navigator.appName=="Netscape")
		with(document.ticker.document)
		{
			open(); write(out); close();
		}
	else
		ticker.innerHTML=out;

	col+=dir;

	if(col>=cols.length-1)
		dir=-dir;
	else if(col<=0)
	{
		if(++nextm>=msg.length)
			nextm=0;
		text=msg[nextm];
		dir=-dir;
	}

	setTimeout('do_ticker("'+text+'",'+col+','+dir+')', delay);
}
