<!--
	checkbr = (parseInt(navigator.appVersion) > 2)?true:false;
	if (checkbr)
		{
		nome = new Array ("",
							"FotoAndre01","FotoAndre02","FotoAndre03","FotoAndre04","FotoAndre05","FotoAndre06","FotoAndre07",
							"FotoAndre08","FotoAndre09","FotoAndre10","FotoAndre11","FotoAndre12","FotoAndre13","FotoAndre14",
							"FotoMarco01","FotoMarco02","FotoMarco03","FotoMarco04","FotoMarco05","FotoMarco06","FotoMarco07",
							"FotoMarco08","FotoMarco09","FotoMarco10","FotoMarco11","FotoMarco12","FotoMarco13","FotoMarco14",
							"FotoClaudio01","FotoClaudio02","FotoClaudio03","FotoClaudio04","FotoClaudio05","FotoClaudio06","FotoClaudio07"/*,
							"FotoClaudio08","FotoClaudio09","FotoClaudio10","FotoClaudio11","FotoClaudio12","FotoClaudio13","FotoClaudio14"*/
						  );							
		source = new Array ();
		for (conta in nome)
			{
				source[conta] = new Image();
				source[conta].src = "images//"+nome[conta]+".jpg";
			}
		var posizione_attuale = 1;
		var maxlength = nome.length -1;
		vuoto = new Image();             
 		vuoto.src="italia.png";
		}
	
function swp(numero)
	{
	if (checkbr)
		{
			posizione_attuale = parseInt(numero);
			document.roller.src=source[numero].src;
		}
	}
	
function titoloImmagine()
{
	document.write("posizione attuale "+posizione_attuale);
}
	
function next()
	{
		if (posizione_attuale < maxlength)
		{
			posizione_attuale++;
		}
		else
		{
			posizione_attuale = 1;
		}
			
		document.roller.src=source[posizione_attuale].src;
	}

function prev()
	{
		if (posizione_attuale > 1)
		{
			posizione_attuale--;
		}
		else
		{
			posizione_attuale = maxlength;
		}
		document.roller.src=source[posizione_attuale].src;
	}
	

function UNswp(numero)
	{
	if (checkbr)
		{
		document.roller.src=vuoto.src;
		}
	}
	
function Chiudi()
	{
	self.close()
	}	
	
function swpvideo(nome)
	{
	if (checkbr)
		{
			var video = "video/"+nome;
			//alert(video+" "+document.rollerobj.data+" "+document.rollersrc.value);//+" "+document.rollersrc.type+" "+document.rollera.href);
			document.rollerobj.data=video;
			document.rollersrc.value=video;
			document.rollersrc.type=video;
			document.rollera.href=video;
		}
	}
//-->
