<!-- obre una finestra filla d'aquesta a tota pantalla
function tota_pantalla(page) {
if (navigator.appName == "Netscape") { window.open(page, '', 'width='+screen.width+',height='+screen.height+',top=0,left=0,scrollbars=no,toolbar=no'); }
else { window.open(page,'', 'fullscreen=yes , scrollbars=no'); } 
}
// -->
<!-- obre una finestra filla de la 'current' a les mides donades i centrada
function centrada(url,nom,amplada,altura){
	posy=(screen.height-altura)/2;
	posx=(screen.width-amplada)/2;
	popup=window.open (url,nom,'height='+altura+', width='+amplada+', top='+posy+', left='+posx+', scrollbars=yes, resizable=no');
	popup.focus();
}
// -->

