function openWindow(URL,x,y) { 
	if ( URL.indexOf( "https" ) != -1 ) 
	{ 
		openWindowSecure( URL, x, y ); 
	} 
	else 
	{	 
		var newWin; 
	 
		if (navigator.userAgent.indexOf('MSIE') != -1) { 
			n=x; 
			m=y; 
		} 
		else { 
			n = parseInt(x)-10; 
			m = parseInt(y)-30; 
		} 
			 
		props = 'scrollbars=yes,toolbar=0,location=0,directories=0,status=0,width=' + n + ',height=' + m + ',menubar=0,resizable=1'; 
		newWin = window.open(URL,'pernice',props); 
		newWin.resizeTo(n,m); 
		newWin.focus(); 
		 
		 
	}	 
}  
 
 
function openWindowSecure(URL,x,y) { 
	 
	var newWin; 
	 
	if (navigator.userAgent.indexOf('MSIE') != -1) { 
		n=x; 
		m=y; 
	} 
	else { 
		n = parseInt(x)-10; 
		m = parseInt(y)-30; 
	} 
		 
	props = 'scrollbars=yes,toolbar=0,location=0,directories=0,status=0,width=' + n + ',height=' + m + ',menubar=0,resizable=1'; 
	newWin = window.open(URL,'pernice',props); 
		 
}  
	 
 
function popWindow_hp(theURL,vars,winName,htmlName,features) {  
 
	eval(winName+"=window.open('"+theURL+'?'+vars+"','"+htmlName+"','"+features+"')"); 
	if (window.focus) 
		eval(winName + ".focus()"); 
	} 
	 
 
<!-- 01050-tracking //--> 
 
document.write("<script language='JavaScript' src='http://www.talkline.de/javascript_ordner/sitestat.js'></script>"); 
 
function sitestat(ns_l) 
	{ 
		ns_l+="&ns__t="+(new Date()).getTime(); 
		ns_pixelUrl=ns_l; 
		ns_0=document.referrer; 
		ns_0=(ns_0.lastIndexOf("/")==ns_0.length-1)?ns_0.substring(ns_0.lastIndexOf("/"),0):ns_0; 
 
		if (ns_0.length>0) 
		{ 
			ns_l+="&ns_referrer="+escape(ns_0); 
		} 
		if (document.images) 
		{ 
			ns_1=new Image(); 
			ns_1.src=ns_l; 
		} 
		else 
		{ 
			document.write("<img src="+ns_l+" width='1' height='1'>"); 
		} 
	}

function showDiv(divId) {
  if ( divId != "" )
     document.getElementById(divId).style.display = 'block';
}
function hideDiv(divId) {
  if ( divId != "" )
     document.getElementById(divId).style.display = 'none';
}

function toggleDiv(divId) {
  if ( divId != "" ) {
    if (document.getElementById(divId).style.display == 'none') 
      showDiv(divId);
    else if (document.getElementById(divId).style.display == 'block') 
      hideDiv(divId);
  }
}
