//STAMPA CONTENUTI
function CallPrint(divID) {
  var WinPrint;
  var prtContent = document.getElementById(divID);
  var WinPrint = window.open('','','left=0,top=0,width=10,height=10,toolbar=0,scrollbars=yes,status=0');
  
  WinPrint.document.bgColor='EEEEEE';
  WinPrint.document.write('<LINK rel=stylesheet type="text/css" href="custom/portal.css">');
  WinPrint.document.write('<LINK rel=stylesheet type="text/css" href="custom/client.css">');
  WinPrint.document.write('<LINK rel=stylesheet type="text/css" href="custom/condivisionedoc.css">');
  
  WinPrint.document.write(prtContent.innerHTML);
  WinPrint.document.close();
  WinPrint.focus();
  WinPrint.print();
  WinPrint.close();
}

function resizeFrame() {
    var min_height = 500;
    
    var doc_height = document.getElementById('main').contentWindow.document.body.scrollHeight + 0;
    
    document.getElementById('main').style.height = (min_height > doc_height) ? min_height:doc_height;
}


function PopUp(url,wheight) {
  popupWin = window.open(url, 'pop', 'width=400,height=330')
}

