function openPopup(url,title,lang,width,height) { 
	var vars = "url="+url+"&title="+title+"&width="+width+"&height="+height;
  var lang = lang;
	var object = "/includes/"+lang+"/popup.php?"+vars; 
  window.open(object,"Popup","width=40,height=60,location=0,scrollbars=no,resizable=no,status=no,menubar=no,toolbar=no");   
}

function openFile(filename, width, height, title) {
  var winX = (screen.width-width)/2;
  var winY = (screen.height-height)/2;
  var param = "width="+width+",height="+height+",left="+winX+",top="+winY+",resizable=no";
  var winName = title.replace(/ /g,"");  // Leerzeichen entfernen
  winName = winName.replace(/-/g,"");   // Bindestriche entfernen
  var filewindow = window.open(filename, winName, param);
  filewindow.focus();
}




    
