
var n, m, c, nome;

function alo()
{
	alert("Gehen Sie schon?");
}

function alo1()
{
	alert ("Warum gehen Sie?");
}

function alo2()
{
	alert("Na bitte ...");
}

function linkover(n)
{
	nome=navigator.appName ;
	if (nome=='Microsoft Internet Explorer')
	{
		c=n.style.color;
		n.style.color = 'Black';
	}
	else
	{
		c=document.ids.n.color;
		document.ids.n.color = 'Black';
	}
}

function linkovergelb(n)
{
	nome=navigator.appName;
	if (nome=='Microsoft Internet Explorer')
	{
		c=n.style.color;
		n.style.color = 'Yellow';
	}
	else
	{
		c=document.ids.n.color;
		document.ids.n.color = 'Yellow';
	}
}

function linkout(n)
{
	if (nome=='Microsoft Internet Explorer')
	{
		n.style.color = c;
		c=' ';
	}
	else
	{
		document.ids.n.color = c;
		c = ' ';
	}
}

function bildover(n)
{
	n.border = '1';
}

function bildout(n)
{
	n.border = '0';
}

function bildgelb(n)
{
c=n.src;
n.src='bilder/'+n+'gelb01.gif';
}

function bildweiss(n)
{
n.src=c;
c=' ';
}

