function exit_page(url)
{
  //url = "http://www.maxi-bilder.de";
  prop = 'menubar=1,resizable=1,location=1,status=1,scrollbars=1,left=10,top=10';
  win = window.open(url,'fenster_exit',prop);
  focus();
}

function scrollup () {window.scrollTo(0,0)}

<!--
function popup_global(url, breite, hoehe, y, x, modus, scrollbars) {
		
	if (url != "#")
	{
		var newWindow;
	   	//var undefined;
		
		var x=0, y=0;
		if (breite < screen.availWidth || hoehe < screen.availHeight) 
		{
		    x = (screen.availWidth - breite - 12) / 2;
		    y = (screen.availHeight - hoehe - 104) / 2;
		    if (window.opera) y = 0; // Opera positioniert unter den Symbolleisten
		    if (x<0 || y<0) { x=0; y=0; }
		}
		
		//if (oben == "") {var oben = (screen.height / 2) - 125;}
		//if (links == "") {var links = (screen.width / 2) - 125;}
		//esli eshe gde nibud ne budet sushestvovat var scrollbars
		if(scrollbars == undefined) {scrollbars="1";}
		
		
		if (!newWindow)	newWindow=window.open(url,'fenster','toolbar=0,menubar=0,resizable=0,location=0,status=0,height='+hoehe+',width='+breite+',scrollbars='+scrollbars+',left='+x+',top='+y);
		
		
	    //"height="+hoehe+",width="+breite+"top ="+oben+",left ="+links);
		
		// Abfragen für fokusieren.
		if (modus == "popup")
		{
	  		newWindow.focus();
		}
		else 
		{
	  		focus();
		}
		
		
	}
}
//-->

 function reload_dp(url, variable) 
 {
 	//alert(url);
	if (variable != "")
	{
		location.href = url+''+variable+'&modul=hilfe_faq';
	}

 }

<!--
function window_global(variable, url, parameter, feld, modus, error_modus, breite, hoehe, oben, links, scrollbars) 
{
	//alert(url);
	var check_text;
	
	if (error_modus == 1)
	{
		check_text = 'auswählen';
	}
	else
	{
		check_text = 'eingeben';
	}
	
	
	if (variable != "#")
	{
		
		var newWindow;
		
		if (modus == "window")
		{
			
		   	url = url + variable + '.html?'+parameter;
			
			//alert(url);
			
			if (variable == '')
			{
				alert('Bitte '+ feld + unescape(" "+check_text+"."));
			}
			else
			{
				newWindow=window.open(url,"","");
			}
		}
		
		else if (modus == "popup")
		{
		   	var undefined;
			
			url = url + variable + '.html?'+parameter;
			
			if (oben == "") {var oben = (screen.height / 2) - 125;}
			if (links == "") {var links = (screen.width / 2) - 125;}
			//esli eshe gde nibud ne budet sushestvovat var scrollbars
			if(scrollbars == undefined) {scrollbars="1";}
			
			if (variable == '')
			{
				alert('Bitte '+ feld + unescape(" "+check_text+"."));
			}
			else
			{	newWindow=window.open(url,'fenster',"height="+hoehe+",width="+breite+",toolbar=0,scrollbars="+scrollbars+",location=0,statusbar=0,menubar=0,resizable=0,top ="+oben+",left ="+links);
			}
			// Abfragen für fokusieren.
			if (modus == "popup")
			{
		  		newWindow.focus();
			}
			else 
			{
		  		focus();
			}
		}
	}
	
}
//-->
