
<!--
	checkbr = (parseInt(navigator.appVersion) > 2)?true:false;
	if (checkbr)
		{
		nome = new Array ("a","b","c","d","e","f","g")
		source = new Array ();
		sourceoff = new Array ();
		for (conta in nome)
			{
				source[conta] = new Image();
				source[conta].src = "img/btn/" + nome[conta]+".gif";
				sourceoff[conta] = new Image();
				sourceoff[conta].src = "img/btn/" + nome[conta]+"_p.gif";
			}
		}
		
function swp(numero)
	{
	if (checkbr)
		{
			document[String(nome[numero])].src=source[numero].src;
		}
	}

function UNswp(numero)
	{
	if (checkbr)
		{
		document[String(nome[numero])].src=sourceoff[numero].src;
		}
	}
	
function Chiudi()
	{
	self.close()
	}	
//-->


