/**
 * Neues Fenster öffnen
 * Programmed by: Daniel Fai, daniel.fai@fai-communication.de
 * Web: http://www.fai-communication.de  
 */  

// Öffnet ein neues Fenster im angegebenen Ziel
function vollbild (adresse)
{
 window.open (adresse,"_blank","menubar=false scrollbars=yes width=820 height=600"); }
 
 function openWindows(url,windowObjCaption,width,height,top,left,scrollbars,resizable){
  var windows = window.open(url,windowObjCaption,'width='+width+',height='+height+',top='+top+',left='+left+',scrollbars='+scrollbars+',resizable='+resizable);
  windows.focus();
}


