function printpreview(uid){
    var url = "index.php?id="+uid+"&type=98";
    //alert('hier sollte sich das druck fenster auftun!');
    //alert('URL:'+url+ ' vom Type <'+typeof(url)+'>');
    fenster = window.open(url, "Druckansicht", "height=600, width=805, scrollbars=yes");
    //, "height=600, width=805, location=1, status=0, menu=0, resizable=0, toolbar=no,scrollbars=yes");
    //var printWindow = window.open(url, "Selit Serviceportal - Druckansicht");
    //,'height=600, width=805, location=1, status=0, menu=0, resizable=0, toolbar=0,scrollbars=1');
}

function printPage(){
  var obj = document.getElementById('print');
  //obj.style.display = "none";
    
  window.print();
}

