var message='Copyright © Cresco S.p.A.\nTutti i diritti riservati\nAll right reserved';
function click(e) {
   if (document.all) {
      if (event.button == 2) {
         alert(message);
         return false;
      }
   }
   if (document.layers) {
      if (e.which == 3) {
         alert(message);
         return false;
      }
   }
}
if (document.layers) {
   document.captureEvents(Event.MOUSEDOWN);
}
//document.onmousedown=click; 

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');
}

function PopUpRicetta(url) {
   popupWin = window.open(url, 'ric', 'width = 500, height = 500, scrollbars = yes, resizable = no');
}

function openPopUp(url, width, height) {
  popupWin = window.open(url, 'pop', 'width = ' + width + ', height = ' + height + ', scrollbars = yes, resizable = no');
}
