function Live(){
	var indirizzo = posizione +"cif.jpg";
	randNum = Math.random()*4;
	var oggetto = document.getElementById('immagine');
	oggetto.src = indirizzo + "?c=" + randNum;
	oggetto.style.cursor = "normal";
	oggetto.title = "Immagine webcam Live"
	setTimeout('Live()',150000);
}

function Immagine(numero){
	var indirizzo = posizione +"webcam_day/hour"+ numero +".jpg";
	var oggetto = document.getElementById('immagine');
	oggetto.src = indirizzo;
	oggetto.title = "Clicca per ingrandire";
	oggetto.style.cursor = "hand";
	oggetto.onclick = function(){
	ApriFoto(numero);
	}
}

function ApriFoto(numero){
	var indirizzo = posizione +"webcam_day/hour"+ numero +".jpg";
	msg=open("","schermo","toolbar=no,directories=no,menubar=no,width=640,height=480,resizable=no");
	msg.document.write("<HEAD><TITLE>Dolomiti Webcam by Dolomiti Network</TITLE></HEAD><BODY bgColor=#1E1D19 topMargin=0 leftMargin=0 rightMargin=0 bottomMargin=0 scroll=no>");
	msg.document.write('<img src="'+ indirizzo +'" border=0>')
}

function AlbaTramonto(nome,tipo,periodo) { //v2.0
   msg=open("","schermo","toolbar=no,directories=no,menubar=no,width=640,height=480,resizable=no");
   msg.document.write("<html><head><title>Dolomiti webcam by Dolomiti Network - Alba</title></head><body bgcolor=#000000 text=#999999 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
   msg.document.write("<table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td align=center valign=middle>");
   msg.document.write("<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab# version=6,0,29,0 width=640 height=480 hspace=0 vspace=0>");
   msg.document.write("<param name=movie value=http://www.dolomitiwebcam.com/albatramonto.swf?tipo="+tipo+"&periodo="+periodo+"&nome="+nome+"><param name=quality value=high>");
   msg.document.write("<embed src=http://www.dolomitiwebcam.com/albatramonto.swf?tipo="+tipo+"&periodo="+periodo+"&nome="+nome+" width=6?????=??????????40 height=480 hspace=0 vspace=0 quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash></embed></object>");
   msg.document.write("</td></tr></table></body></html>");
}

function ImaBig(nome){
	if(nome == 'vga'){
	var indirizzo = posizione + nome +".jpg";
	msg=open("","schermo","toolbar=no,directories=no,menubar=no,width=640,height=480,resizable=no");
	msg.document.write("<HEAD><TITLE>Dolomiti Webcam by Dolomiti Network</TITLE></HEAD><BODY bgColor=#1E1D19 topMargin=0 leftMargin=0 rightMargin=0 bottomMargin=0 scroll=no>");
	msg.document.write('<img src="'+ indirizzo +'" border=0>')
	}else{
	var indirizzo = posizione + nome +".jpg";
	fin=open("","schermo","");
	fin.document.write("<HEAD><TITLE>Dolomiti Webcam by Dolomiti Network</TITLE></HEAD><BODY bgColor=#1E1D19 topMargin=0 leftMargin=0 rightMargin=0 bottomMargin=0>");
	fin.document.write('<img src="'+ indirizzo +'" border=0>')
	}
}