
//
// funzione per l'apertura del popup offerte
//
function openOfferta(id, mtitle)
{
  var width="640", height="480";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=640,height=600,left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("dettOfferta.asp?Id=" + id + "&mTitle=" + mtitle,"msgWindow", styleStr);
}

