
<!-- Begin POP-UP WITH CHOOSE 


function greg(tga)
{
switch (tga) {
 case 1:
   window.open("ethernet.htm","","noresize"); 
   break;
 case 2:
   window.open("fast.htm","","noresize");
   break;
 case 3:
   window.open("giga.htm","","noresize");
   break;
}
}

// End -->


<!-- Begin Normal Pop Up

function gregpopup(addr) {
w=1024;
h=768;
  x = Math.ceil( (window.screen.width  - w) / 2 );
  y = Math.ceil( (window.screen.height  - h) / 2 );
  centra = 'top='+y+',left='+x+',';
  w = w+40;
  h = h+70;
  grg=window.open(addr,'',centra+'menubar=no,location=no,toolbar=no,status=no,scrollbars=yes,resizable=no,width='+w+',height='+h)
  grg.focus();
}

// End -->


<!-- Begin Resize Pop Up

function gregpopupresize(addr,w,h) {
  x = Math.ceil( (window.screen.width  - w - 70) / 2 );
  y = Math.ceil( (window.screen.height  - h - 100) / 2 );

 if (h > window.screen.height) 
      {
       h=700;
       scrolls='yes';
       y=2;
      }
 else
      {
       scrolls='no';
       h = h+70;
      }
  centra = 'top='+y+',left='+x+',';
    w = w+40;
  grg=window.open(addr,'',centra+'menubar=no,location=no,toolbar=no,status=no,scrollbars='+scrolls+',resizable=no,width='+w+',height='+h)
  grg.focus();
}

// End -->




<!-- Begin full screen

function fullScreen() {
  window.open(location.href,'fullscreen','fullscreen,scrollbars')
}

// End -->



<!-- Stampa documento

function stampa(){
	if (!window.print){
	alert("Browser non supportato!")
	return
}
window.print()
}

// End-->


