function neuesfenster() 
{ 
top.name = "FAQ"; 
var popupURL = "/FAQ.html"; 
var popup = window.open(popupURL,"neuesfenster",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=560,marginwidth=200,marginheight=50,left=200,top=50'); 
if( navigator.appName.substring(0,8) == "Netscape" ) 
{ 
popup.location = popupURL; 
popup.opener = self; 
} 
} 
