
function TargetBlank(){
  var i = 0;
  var collegamenti = document.links;
  for (i=0; i<collegamenti.length; i++)  {
    var primo_carattere=collegamenti[i].title.charAt(0);
    if (primo_carattere == " ") {
      collegamenti[i].target = "_blank";
    }
  }
}


function AggiornaData(){
	data = new Date();

	ora =data.getHours();
	minuti=data.getMinutes();
	secondi=data.getSeconds();
	giorno = data.getDay();
	mese = data.getMonth();
	date= data.getDate();
	year= data.getYear();

	if(minuti< 10)minuti="0"+minuti;

	if(secondi< 10)secondi="0"+secondi;

	if(year<1900)year=year+1900;

	if(ora<10)ora="0"+ora; 

	if(giorno == 0) giorno = " DOMENICA "; 
	if(giorno == 1) giorno = " LUNEDI' ";
	if(giorno == 2) giorno = " MARTEDI' "; 
	if(giorno == 3) giorno = " MERCOLEDI' "; 
	if(giorno == 4) giorno = " GIOVEDI' ";
	if(giorno == 5) giorno = " VENERDI' ";
	if(giorno == 6) giorno = " SABATO ";

	if(mese == 0) mese = "GENNAIO ";
	if(mese ==1) mese = "FEBBRAIO ";
	if(mese ==2) mese = "MARZO ";
	if(mese ==3) mese = "APRILE ";
	if(mese ==4) mese = "MAGGIO ";
	if(mese ==5) mese = "GIUGNO ";
	if(mese ==6) mese = "LUGLIO ";
	if(mese ==7) mese = "AGOSTO ";
	if(mese ==8) mese = "SETTEMBRE ";
	if(mese ==9) mese = "OTTOBRE ";
	if(mese ==10) mese = "NOVEMBRE ";
	if(mese ==11) mese = "DICEMBRE";

	document.getElementById("data").innerHTML=""+giorno+" "+date+" "+mese+" "+year+" [<span class='ora'>"+ora+"."+minuti+"</span>]";

}