<!-- Inizio
// Creato da Seatiger Team™
// A Sbafo! Tutto per il web gratis e in italiano
// http://www.asbafo.net
// Liberamente utilizzabile, ma lascia intatte queste righe. Grazie!
function ApriFinestra(str, larg, alt) { 


// QUI SOTTO NON TOCCARE NULLA
toptop=(screen.height/2)-(alt/2); 
leftleft=(screen.width/2)-(larg/2); 


var newWindow="";
  if(newWindow){
    newWindow.close();
	}
newWindow = window.open(str,'','top='+toptop+',left='+leftleft+',width='+larg+',height='+alt+',scrollbars=no,status=yes,location=no,toolbar=no,resizable=yes'); 

} 
