<!--
// WinOpen-Funktion
function winOpen(theURL,winName,features) { 
var win;
win = window.open(theURL,winName,features);
win.focus();
}

function winOpen(theURL,winName,features) 
{ 
winName = window.open(theURL,winName,features); 
if(winName == null || winName.closed){window.open(theURL,winName,features);} 
else{winName.location.href = theURL;} 
if (!winName.closed) 
winName.focus(); 
}
function printtxt()
  {
    var Url = encodeURI(parent.inhalt.document.location.href);
    window.open("/module/print/print.aspx?url=" +encodeURIComponent(Url)+"&outputtype=text", "Drucken","width=775,height=800,scrollbars=yes");
  }

function printpdf()
  {
    var Url = encodeURI(parent.inhalt.document.location.href);
    window.open("/module/print/print.aspx?url=" +encodeURIComponent(Url)+"&outputtype=pdf", "Drucken","width=775,height=800,scrollbars=yes");
  }

function printnormal()
  {
    var Url = encodeURI(parent.inhalt.document.location.href);
    window.open("/module/print/print.aspx?url=" +encodeURIComponent(Url)+"&outputtype=html", "Drucken","width=775,height=800,scrollbars=yes");
  }
-->