function toolWindow(page, h, w, tw)
{
  var targetWindow = 'tw';
  if(tw) targetWindow = tw;
  var s='height='+h+', width='+w+', top='+(screen.height-h)/2+', left='+(screen.width-w)/2+', scrollbars=yes, resizable=no';
  win=window.open(page, tw, s);
  win.moveTo ((screen.width-w)/2, (screen.height-h)/2);
  win.resizeTo (w, h);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
function popupDim(immagine, h, w, intestazione)
{
  var s='height= ' + h + ', width=' + w + ', top='+(screen.height-h)/2+', left='+(screen.width-w)/2+', scrollbars=no, resizable=no';
  win=window.open('', 'immagine', s);
  win.document.write ('<html>');
  win.document.write ('<title>');
  win.document.write (' ' + intestazione + ' ');
  win.document.write ('</title>');
  win.document.write ('<body bgcolor=#000000 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
  win.document.write ('<img src=images/libri/' + immagine + ' height= ' + h + ' width=' + w + ' >');
  win.document.write ('</body>');
  win.document.write ('</html>');
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

function popupDim_2(immagine, h, w, intestazione)
{
  var s='height= ' + h + ', width=' + w + ', top='+(screen.height-h)/2+', left='+(screen.width-w)/2+', scrollbars=no, resizable=no';
  win=window.open('', 'immagine', s);
  win.document.write ('<html>');
  win.document.write ('<title>');
  win.document.write (' ' + intestazione + ' ');
  win.document.write ('</title>');
  win.document.write ('<body bgcolor=#ffffff leftmargin=12 topmargin=0 marginwidth=0 marginheight=0>');
  win.document.write ('<img src=../biografieDiscepoli/' + immagine + ' height= ' + h + ' width=' + w + ' >');
  win.document.write ('</body>');
  win.document.write ('</html>');
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

function invia(pagina, titolo, tipo, metodo)
{
  var page = "";
  var height ='';


  if(metodo=='d')
  {
    page = "leggi.php?id="+pagina+"&tipo="+tipo+"&metodo="+metodo;
  }
  else
  {
    page = "leggi.php?pagina="+pagina+"&titolo="+titolo+"&tipo="+tipo+"";
  }


  if(tipo == 'l')
  {
    height ='400'
  }
  else if(tipo == 's')
  {
    height ='460'
  }
  else if(tipo == 'i')
  {
    height ='460'
    if(metodo=='d')
    {
      page = "informazioni.php?id="+pagina+"&tipo="+tipo+"&metodo="+metodo;
    }
    else
    {
      page = "informazioni.php?pagina="+pagina+"&titolo="+titolo+"&tipo="+tipo+"";
    }
  }

  var width='500';
  var s='height='+height+', width='+width+', top='+(screen.height-height)/2+', left='+(screen.width-width)/2+', '
  s += 'scrollbars=no, resizable=yes, status=yes, titlebar=no, toolbar=no, location=no, directories=no, channelmode=no';
  win=window.open(page, 'New', s);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}


