var btype = navigator.appName ;
var wert = 0 ;

function al() 
{
  	// document.write(navigator.appName);
  	var btype = navigator.appName ;
  	var wert = 0 ;
  	// document.write(btype);
	if(btype == "Microsoft Internet Explorer")
  	{
 		pandIE(1);
  	}
	if(btype == "Netscape")
  	{
  		pandMoz(0.1);
  	}
  	if(btype == "Opera")
  	{
		w10 = eval("neu");
		var inhalt = "alpha(opacity=" + 1 + ")" ;
		w10.style.filter=inhalt ;
  		//window.setTimeout( 'pandOpera1(1)' ,12000);
		pandOpera1(1);
  	}
}
// -----------------------------------------
function pandIE(wert) 
{
  w10 = eval("neu");
  var inhalt = "alpha(opacity=" + wert + ")" ;
  w10.style.filter=inhalt ;
  wert1 = wert + 1 ;
  if ( wert < 100 )
    {
  		window.setTimeout( 'pandIE(wert1)' ,80);
	}
   else
    {
		window.setTimeout( 'pandIE1(100)' ,14000);
	}
 }

function pandIE1(wert) 
{
  w10 = eval("neu");
  var inhalt = "alpha(opacity=" + wert + ")";
  w10.style.filter=inhalt ;
  wert1 = wert - 1 ;
  if ( wert > 0 )
    {
  		window.setTimeout( 'pandIE1(wert1)' ,0);
	}
	else
    {
		w10.style.display = "none";
	}
 }
// -----------------------------------------
function pandMoz(wert) 
{
  // alert("Moz");
  w10 = document.getElementById("neu");
  w10.style.MozOpacity=wert
  wert1 = wert + 0.01 ;
  if ( wert < 1 )
    {
  		window.setTimeout( 'pandMoz(wert1)' ,100);
	}
   else
    {
		window.setTimeout( 'pandMoz1(0.9)' ,12000);
	}
}
function pandMoz1(wert) 
{
  w10 = document.getElementById("neu");
  w10.style.MozOpacity=wert
  wert1 = wert - 0.01 ;
  if ( wert > 0 )
    {
  		window.setTimeout( 'pandMoz1(wert1)' ,100);
	}
		else
    {
		w10.style.display = "none";
	}
 }
 // ---------------------------------------------------
function pandOpera(wert) 
{
  w10 = document.getElementById("neu");
  w10.style.opacity=0.01
  wert1 = wert + wert ;
   if ( wert < 1 )
    {
  		window.setTimeout( 'pandOpera(wert1)' ,80);
	}
   else
    {
		window.setTimeout( 'pandOpera1(1)' ,14000);
	}
}
function pandOpera1(wert) 
{
  w10 = document.getElementById("neu");
  w10.style.opacity=wert
  wert1 = wert - 0.01 ;
  if ( wert > 0 )
    {
  		window.setTimeout( 'pandOpera1(wert1)' ,150);
	}
		else
    {
		w10.style.display = "none";
	}
 }
