// JavaScript Document


// PopUp Funktion -----------------------------------------------------------------
function popUp( url, breite, hoehe ) 
{ 
	top.name = "main_window"; 
	var popupURL = url; 
	var popup = window.open(popupURL,"neuesfenster",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+breite+',height='+hoehe); 

	if( navigator.appName.substring(0,8) == "Netscape" ) 
	{ 
		popup.location = popupURL; 
		popup.opener = self; 
	} 
} 
// PopUp Funtion Ende ---------------------------------------------------------------

// Link bestätigen  -----------------------------------------------------------------
function conf( text, url ) 
{
	if ( confirm( text ) ) 
	{ 
		location.href=url; 		/* sehende Seite */			
	} 
	else 
	{ 
		/* abbrechen Seite oder Verweis */
	} 
}
// Link bestätigen  Ende-------------------------------------------------------------


// Fader Skript ( www.js-welt.de ) --------------------------------------------------
/*
	var agt = navigator.userAgent.toLowerCase();
	var dom = (document.getElementById) ? true : false;
	var ns5 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false;
	var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;
	var ns4 = (document.layers && !dom) ? true : false;
	var ie4 = (document.all && !dom) ? true : false;
	var nodyn = (!ns5 && !ns4 && !ie4 && !ie5) ? true : false;
	var is_win  = ((agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1)) ? true : false;

	var maxImages = 2;
	var activeImage = 1;

	function fnToggle() 
	{			
		if (is_win && ie5)
		{
			prvImageContainer.filters[0].Apply();
			document.getElementById("prvImage" + activeImage).style.visibility="hidden";
			if (activeImage == maxImages) activeImage=0;
			activeImage++;
			document.getElementById("prvImage" + activeImage).style.visibility="visible";
			prvImageContainer.filters[0].Play();
		} 
		else 
		{
			document.prvImage.src = img[activeImage].src;
			activeImage++;
			if (activeImage > maxImages) activeImage=1;
		}				
	}    		

	function beginTransitions() 
	{
		timerID = setInterval("fnToggle()", 3000);
	}
	beginTransitions();
*/
// Fader Skript ( www.js-welt.de ) Ende ---------------------------------------------
