function splash (pagina)
{
	var w = window.screen.width;
	var h = window.screen.height;
	s = ",width="+ w +",height="+ h ;
	var sw=window.open ("","","fullscreen=1,resizable=no, toolbar=no, scrollbars=no, directories=no,menubar=no,status=no,location=no," + s);
	sw.moveTo  (0, 0);
	sw.window.location.href = (pagina)
	sw.focus();
}
