// JavaScript Document

		function BrowserInfo()
		{
		  this.name = navigator.appName;
		  this.codename = navigator.appCodeName;
		  this.version = navigator.appVersion.substring(0,4);
		  this.platform = navigator.platform;
		  this.javaEnabled = navigator.javaEnabled();
		  this.screenWidth = screen.width;
		  this.screenHeight = screen.height;
		}
			


function printPage() { print(document); }


<!--
function showLayer(LayerName)
   {
   var Nome = LayerName   
   if (document.layers)
      LayerStyle=document.layers.Nome
      else if (document.getElementById)
         LayerStyle=document.getElementById(Nome).style;
         else
         LayerStyle=document.all.Nome.style;
   
   if (LayerStyle.visibility.indexOf("hid")!=-1)
      LayerStyle.visibility="visible";
   }

function hideLayer(LayerName)
   {
   var Nome = LayerName   
   if (document.layers)
      LayerStyle=document.layers.Nome
      else if (document.getElementById)
         LayerStyle=document.getElementById(Nome).style;
         else
         LayerStyle=document.all.Nome.style;
   
   if (LayerStyle.visibility.indexOf("hid")==-1)
      LayerStyle.visibility="hidden";
   }   
//-->


		// MOVIMENTO LAYER
		function moveLayer(layerName,layerPosition)	
		{
			Layer = layerName
			xyz = layerPosition
				
			if (layerPosition < 153)	
			{
				layerPosition ++
			}
			else
			{
				// ferma il loop
				return
			}
				// muovi il layer
				eval( "document" + layerRef + "[Layer]" + styleRef + ".top = " + layerPosition )
				// pausa per la velocità			
				setTimeout('moveLayer(' + layerPosition + ')', 1)
		}		
		
		// MOVIMENTO LAYER
		function moveLayerReturn(layerName,layerPosition)	
		{		
			if (layerPosition < 153)	
			{
				layerPosition --
			}
			else
			{
				// ferma il loop
				return
			}
				// muovi il layer
				eval( "document" + layerRef + "[layerName]" + styleRef + ".top = " + layerPosition )
				// pausa per la velocità			
				setTimeout('moveLayerReturn(' + layerPosition + ')', 1)
		}	
		
