//header = intestazione della finestra
//msg = messaggio da stampare al centro della finestra
//footer = coda della finestra
win=null
function creaAlert(msg,header,subtitle,footer)
{
  centerX=screen.width/2
  centerY=screen.height/2
  height=320
  width=400
  screenX=centerX-(width/2)
  screenY=centerY-(height/2)
  windowFeature='toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=no,height='+height+',width='+width+',left='+screenX+',top='+screenY
  if (win==null||win.closed) {
    win=window.open('','alertPopup',windowFeature)
  }  
  else   
  {   
      win.close() 
      win=window.open('','alertPopup',windowFeature)
      win.focus()
  }    
 
  //sostituisco i caratteri di \n con i <BR> per l'html
  re = /\n/gi;
  msg=msg.replace(re,"<BR>");
 
  win.document.open
  win.document.writeln('<html><body><center>')
  win.document.writeln('<font style="font-family:verdana ; font-size:16pt ; font-weight:bold ; color:#44567C">'+header+'</font><br><br>')
  win.document.writeln('<font style="font-family:verdana ; font-size:12pt ; font-weight:bold ; color:red">'+subtitle+'</font><br>')
  win.document.writeln('<table border=1 cellpadding=2 style="font-family:arial; font-size:10pt;font-weight:normal;border-collapse:collapse" bordercolor=#7BB57B width=70%><tr><th>')
  win.document.writeln('<p align=center>')
  win.document.writeln('<font style="font-family:arial; font-size:8pt;font-weight:normal">'+msg+'</font>')
  win.document.writeln('</p>')
  win.document.writeln('</th></tr></table>')
  win.document.writeln('<br><br>')
  win.document.writeln(footer)
  win.document.writeln('<br>')
  win.document.writeln('</center></body></html>')
  win.document.close
}