<!--
function homepage() 
{
	if (document.all) 
    {
   	  document.body.style.behavior = 'URL(#default#homepage)';
      document.body.setHomePage("http://www.discutiamo.com");
    } 
	else
      alert('Per settare come HomePage di Firefox:\n\nStrumenti > Opzioni > Generale\n\nPoi clicca "Usa Pagina Corrente"');
}

function popup(url,h,w)
{
   settings=
   "left="+Math.floor((screen.width-w)/2)+
   ",top="+Math.floor((screen.height-h)/2)+
   ",height="+h+
   ",width="+w+
   ",toolbar=no,location=no,directories=no,"+
   "status=no,menubar=no,scrollbars=no,"+
   "resizable=yes";
   MyNewWindow=window.open(url,"",settings);
   MyNewWindow.focus();
   return MyNewWindow;
}

-->