<!--

// *********************** drucken ****************************************************

function drucken()
{
	if (window.name != "drucken")
	{
		var Version = navigator.appVersion;
		if (navigator.appName == "Microsoft Internet Explorer")
		{
			var Browser = "MSIE";
		}
		if(Version.charAt(0) < 4)
		{
			var druckfenster = window.open(document.location.href,"drucken","toolbar=1");
		}
		else
		{
			if (Version.indexOf("Mac") != -1 && Browser == "MSIE")
			{
			var druckfenster = window.open(document.location.href,"drucken","toolbar=1");
			}
			window.print();
		}
	}
}


// *********************** OpenBrWindow ***********************************************

function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
	if(window.screen)if(isCenter)if(isCenter=="true"){
	var myLeft = (screen.width-myWidth)/2;
	var myTop = (screen.height-myHeight)/2;
	features+=(features!='')?',':'';
	features+=',left='+myLeft+',top='+myTop;
	}
	window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}


// *********************** MM_openBrWindow ********************************************

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//-->